/api/marketSnapshot of stats, order book, trades, and candles for a supported market.
tick(number) — Order-book bucket size, default 0.01, max 1.granularity(number) — Candle seconds: 60, 300, 900, 3600, 21600, 86400.
{
"stats": {
"symbol": "SOL",
"lastPrice": 89.42,
"markPrice": 89.42,
"indexPrice": 89.41,
"change24h": -1.12,
"change24hPercent": -1.24,
"volume24h": 168983420,
"openInterest": 1452563,
"fundingRate": 0.0016,
"fundingCountdown": "00:42:18"
},
"asks": [{ "price": 89.44, "size": 12000, "total": 12000 }],
"bids": [{ "price": 89.40, "size": 15000, "total": 15000 }],
"trades": [{ "id": "1", "side": "buy", "price": 89.42, "size": 1200, "time": "..." }],
"candles": [{ "time": 1716120000, "open": 89.0, "high": 89.6, "low": 88.8, "close": 89.42, "volume": 12000 }],
"spreadPercent": 0.044
}curl -s "https://uller.trade/api/market?market=SOL-PERP&tick=0.01&granularity=3600"












