OHLCV candles for a symbol and interval. Weight:Documentation Index
Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
Use this file to discover all available pages before exploring further.
2
Request
| Field | Type | Required | Default | Notes |
|---|---|---|---|---|
symbol | string | Yes | — | Trading pair |
interval | string | Yes | — | 1m / 5m / 15m / 30m / 1h / 4h / 1d / 1w |
start_time | int64 | No | — | ms epoch; filters open_time ≥ start_time |
end_time | int64 | No | — | ms epoch; filters open_time ≤ end_time |
limit | int | No | 500 | 1..5000 |
cursor | string | No | — | Opaque cursor — pass through |
Response
| Field | Type | Notes |
|---|---|---|
open, high, low, close | string | Decimal price |
volume | string | Base-asset volume during the candle |
timestamp | int64 | Candle open time (ms epoch) |
Notes
- 60s cache keyed by
(symbol, interval, time-range, cursor)