Coins

Coin OHLC Chart by ID

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

get/coins/{id}/ohlc

Path parameters

idstring required
Example:bitcoin

coin ID <br> *refers to /coins/list.

Query parameters

vs_currencystring required
Example:usd

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

days'1' | '7' | '14' | '30' | '90' | '180' | '365' | 'max' required

data up to number of days ago

interval'daily' | 'hourly'

data interval, leave empty for auto granularity

precision'full' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18'

decimal place for currency price value

Response

Get coin's OHLC

number[] required

Example response

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

Changes