REST API

Get detailed ticker info

GET
/market/ticker

Authorization

bearerAuth
AuthorizationBearer <token>

API key passed as Bearer token in Authorization header

In: header

Query Parameters

exchange*string
Value in"binance" | "bybit" | "okx" | "kucoin" | "gate" | "htx" | "bitget" | "bingx" | "bitmart" | "bitmex" | "coinex" | "hyperliquid"
marketType*string
Value in"spot" | "futures" | "coinm-futures"
symbol*string
Length1 <= length <= 20

Response Body

application/json

curl -X GET "https://loading/api/v1/market/ticker?exchange=binance&marketType=spot&symbol=string"
{
  "success": true,
  "data": {
    "symbol": "string",
    "price": 0,
    "change24h": 0,
    "changePercent24h": 0,
    "volume24h": 0,
    "high24h": 0,
    "low24h": 0,
    "timestamp": 0
  },
  "meta": {
    "timestamp": 0,
    "remaining": 0
  }
}