REST API
Get current price for a symbol
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
Length
1 <= length <= 20Response Body
application/json
curl -X GET "https://loading/api/v1/market/price?exchange=binance&marketType=spot&symbol=string"{
"success": true,
"data": {
"symbol": "string",
"price": 0,
"timestamp": 0
},
"meta": {
"timestamp": 0,
"remaining": 0
}
}