GET
/
v1
/
kline
curl --request GET \
  --url https://api-evm.orderly.network/v1/kline \
  --header 'orderly-account-id: <orderly-account-id>' \
  --header 'orderly-key: <orderly-key>' \
  --header 'orderly-signature: <orderly-signature>' \
  --header 'orderly-timestamp: <orderly-timestamp>'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "rows": [
      {
        "open": 66166.23,
        "close": 66124.56,
        "low": 66038.06,
        "high": 66176.97,
        "volume": 23.45528526,
        "amount": 1550436.21725288,
        "symbol": "PERP_BTC_USDC",
        "type": "1m",
        "start_timestamp": 1636388220000,
        "end_timestamp": 1636388280000
      }
    ]
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Query Parameters

symbol
string
required
type
string
required

1m/5m/15m/30m/1h/4h/12h/1d/1w/1mon/1y

limit
number

Numbers of klines. Maximum of 1000 klines.

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required