GET
/
tickers
/
{coin_id}
/
historical
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/tickers/btc-bitcoin/historical?start=2019-01-01&interval=1d'
[
  {
    "timestamp": "2018-03-01T00:00:00Z",
    "price": 855.53,
    "volume_24h": 1968587956,
    "market_cap": 83761787514
  }
]

Path Parameters

coin_id
string
required
Example:

"btc-bitcoin"

Query Parameters

start
string
required

start point for historical data

Supported formats:

  • RFC3999 (ISO-8601) eg. 2018-02-15T05:15:00Z
  • Simple date (yyyy-mm-dd) eg. 2018-02-15
  • Unix timestamp (in seconds) eg. 1518671700
end
string
default:NOW

end point for historical data

Supported formats:

  • RFC3999 (ISO-8601) eg. 2018-02-15T05:15:00Z
  • Simple date (yyyy-mm-dd) eg. 2018-02-15
  • Unix timestamp (in seconds) eg. 1518671700
limit
integer
default:1000

limit of result rows (max 5000)

quote
string
default:usd

returned data quote (available values: usd btc)

interval
string
default:5m

returned points interval (available values: 5m 10m 15m 30m 45m 1h 2h 3h 6h 12h 24h 1d 7d 14d 30d 90d 365d)

Response

200
application/json

successful operation

Historical tick response.