Market
Market data endpoints - prices, OHLCV, order books, and market statistics
Get 24-hour ticker data
Query Parameters
Ticker type (24hr, price)
"24hr"Comma-separated symbols (e.g., BTC,ETH,SOL)
Number of tickers to return
201 <= value <= 100Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/ticker"[
{}
]{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get current cryptocurrency prices
Query Parameters
Comma-separated symbols (e.g., BTC,ETH,SOL)
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/prices?symbols=string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get live aggregated prices from multiple exchanges
Query Parameters
Comma-separated symbols (e.g., BTC/USDT,ETH/USDT). If not provided, returns all available symbols.
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/prices/live"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get price for a single symbol
Path Parameters
Query Parameters
Exchange name (optional, for future use)
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/prices/string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Top Cryptocurrencies
Query Parameters
Number of cryptocurrencies to return
1001 <= value <= 250Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/top"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}curl -X GET "https://loading/api/v1/market/status"{}curl -X GET "https://loading/api/v1/market/symbols"{}Get Ohlc Data
Query Parameters
Trading symbol (e.g., BTC/USDT)
Candlestick interval
"1h""1m" | "3m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M"Number of candlesticks to return
1001 <= value <= 1000Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/ohlc?symbol=string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Ohlc Range
Query Parameters
Trading symbol (e.g., BTC/USDT)
Candlestick interval
"1h""1m" | "3m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M"Range start, ISO8601 (e.g. 2025-01-01T00:00:00Z)
Range end, ISO8601 (e.g. 2025-06-01T00:00:00Z)
Max candles to return (most-recent within window)
10001 <= value <= 2000Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/ohlc-range?symbol=string&start=string&end=string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Orderbook
Query Parameters
Trading symbol (e.g., BTC/USDT)
Order book depth (number of price levels)
205 <= value <= 100Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/orderbook?symbol=string"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}curl -X GET "https://loading/api/v1/market/stats"{}Get Market Movers
Query Parameters
Number of top movers to return
101 <= value <= 50Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/movers"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Market Heatmap
Query Parameters
Number of assets to include
5010 <= value <= 100Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/heatmap"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}curl -X GET "https://loading/api/v1/market/volume-distribution"{}curl -X GET "https://loading/api/v1/market/activity"{}Get Trending Pairs
Query Parameters
Number of trending pairs to return
205 <= value <= 50Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/market/trending"{}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}