Get fine-grained historical information (up to 5 minute intervals) about Crypto listings. For more information, see the official API Endpoint: https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesHistorical
aux_fields
Optional
Auxiliary Fields to return in the response. To get ALL the available fields, use:
price,volume,market_cap,quote_timestamp,is_active,is_fiat,search_interval
cryptocurrency_ids
Optional
One or more comma-separated CoinMarketCap cryptocurrency IDs.
interval
Optional
Interval of time to return data points for. See details in endpoint description.
limit
Optional
How many quotes to return per API call. Max is 10000.
skip_invalid
Optional
Set this to true
to ignore cases where there’s no data for your specified query. When requesting records on multiple cryptocurrencies an error is returned if no match is found for 1 or more requested cryptocurrencies. If set to true
, invalid lookups will be skipped allowing valid cryptocurrencies to still be returned.
symbols
Optional
Symbols to look up prices for.
time_end
Optional
Timestamp (Unix or ISO 8601) to stop returning quotes for (inclusive). Optional, if not passed, we’ll default to the current time. If no “time_start” is passed, we return quotes in reverse order starting from this time.
time_start
Optional
Only used for the historical
version of this endpoint. Timestamp (Unix or ISO 8601) to start returning quotes for. Optional, if not passed, we’ll return quotes calculated in reverse from “time_end”.
latest_or_historical
Default latest
Whether to use the latest version of the endpoint: https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesLatest or the historical version: https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesHistorical to get back time-series quotes of prices.
IMPORTANT The historical version requires you setting the time_start
& time_end
inputs and requires the CoinMarketCap Standard
or higher pricing plan. To use this, enter historical
here and make sure to set time_start
& time_end
entries!
Get fine-grained historical information (up to 5 minute intervals) about Crypto listings. For more information, see the official API Endpoint: https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesHistorical
/v1/cryptocurrency/quotes/{{latest_or_historical}}
?aux={{ aux_fields }}&id={{ cryptocurrency_ids }}&symbol={{ symbols }}&time_start={{ time_start }}&time_end={{ time_end }}&count={{ limit }}&interval={{ interval }}&skip_invalid={{ skip_invalid }}
Body
Headers
{{ api_key }}