Coins

๐Ÿ’ผ Coin OHLC Chart within Time Range by ID

This endpoint allows you to get the OHLC chart (Open, High, Low, Close) of a coin within a range of timestamp based on particular coin ID

get/coins/{id}/ohlc/range

Path parameters

idstring required
Example:bitcoin

coin ID *refers to /coins/list.

Query parameters

vs_currencystring required
Example:usd

target currency of price data *refers to /simple/supported_vs_currencies.

fromstring required

starting date in ISO date string (YYYY-MM-DD or YYYY-MM-DDTHH:MM) or UNIX timestamp. use ISO date string for best compatibility

tostring required

ending date in ISO date string (YYYY-MM-DD or YYYY-MM-DDTHH:MM) or UNIX timestamp. use ISO date string for best compatibility

interval'daily' | 'hourly' required

data interval

Response

Get coin's OHLC within time range

number[] required

Example response

[
  [
    1709395200000,
    61942,
    62211,
    61721,
    61845
  ],
  [
    1709409600000,
    61828,
    62139,
    61726,
    62139
  ],
  [
    1709424000000,
    62171,
    62210,
    61821,
    62068
  ]
]

Changes