REST API

Get supported timeframes for an exchange

GET
/market/timeframes

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"

Response Body

application/json

curl -X GET "https://loading/api/v1/market/timeframes?exchange=binance&marketType=spot"
{
  "success": true,
  "data": {
    "exchange": "string",
    "timeframes": {
      "property1": "string",
      "property2": "string"
    }
  },
  "meta": {
    "timestamp": 0,
    "remaining": 0
  }
}