Historical quotes

GET {{baseUrl}}/v1beta3/crypto/:loc/quotes?symbols=BTC/USD,LTC/USD

The crypto quotes API provides historical quote data for a list of crypto symbols between the specified dates.

Request Params

KeyDatatypeRequiredDescription
symbolsstring(Required) Comma separated list of symbols.
startstringThe inclusive start of the interval. Format: RFC-3339 or YYYY-MM-DD.
If missing, the default value is the beginning of the current day.
endstringThe inclusive end of the interval. Format: RFC-3339 or YYYY-MM-DD.
If missing, the default value is the current time.
limitnumberThe maximum number of data points to return in the response.
The API may return less, even if there are more available data points in the requested interval.
Always check the next_page_token for more pages.
The limit applies to the total number of data points, not per symbol!
page_tokenstringPagination token to continue from. The value to pass here is returned in specific requests when more data is available than the request limit allows.
sortstringSort data in ascending or descending order.

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"quotes":{"BTC/USD":[{"t":"2022-05-26T11:47:18.44347136Z","bp":29058,"bs":0.3544,"ap":29059,"as":3.252}],"ETH/USD":[{"t":"2022-05-26T11:47:18.499478272Z","bp":1817,"bs":4.76,"ap":1817.7,"as":6.137}]},"next_page_token":null}