/v1/ohlc/{id}
OHLC candlestick data
Request
https://api.xrpl.to/v1/ohlc/0dd550278b74cb6690fdae351e8e0df3| Path parameter | Value | Description |
|---|---|---|
| id | A token id: its md5, slug or issuer_currency |
| Query parameter | Value | Description |
|---|---|---|
| range | 1D|5D|7D|1M|3M|1Y|5Y|ALL | |
| interval | 1m|5m|15m|30m|1h|2h|4h|1d|1w | |
| vs_currency | XRP|USD|EUR|JPY|CNH (default: XRP) | |
| resolution | int (minutes), or D|W | |
| cb | int (candle bar count, max 5000) | |
| invert | bool |
curl 'https://api.xrpl.to/v1/ohlc/0dd550278b74cb6690fdae351e8e0df3'
Response
https://api.xrpl.to/v1/ohlc/0dd550278b74cb6690fdae351e8e0df3{ "success": true, "took": 3, "length": 97, "format": "ohlc", "metric": "price", "resolution": 15, "interval": "15m", "interval_seconds": 900, "vs_currency": "XRP", "inverted": false, "base_interval": 300, "ohlc": [ [ 1789889400000, 0.723589, 0.7239031, 0.7234843, 0.7234843 ], [ 1789890300000, 0.7234843, 0.7249005, 0.7234843, 0.724833102 ], [ 1789891200000, 0.724833102, 0.7249, 0.722073796, 0.722710453 ], [ 1789892100000, 0.722710453, 0.724342, 0.722491144, 0.724342 ], [ 1789893000000, 0.724342, 0.725843815, 0.723656798, 0.725843815 ] ] }
Long arrays and strings are shortened in the example; Send request for the full answer.
{ success, took, length, format, resolution, interval, interval_seconds, vs_currency, inverted, base_interval, preAgg?, ohlc: [ [ time, open, high, low, close, volume, ... ] ] }
What it does
OHLC candlestick data