Retrieves historical token price estimates.
This endpoint retrieves the price estimates calculated in the past. Different collections will have different frequencies when prices are recalculated, but for collections that have regular trades there should be at least one price per calendar day.
To obtain the estimated price at a certain time, specify the before parameter and limit=1.
To obtain the first estimate after a trade, specify the after parameter with the timestamp of the trade, and limit=1.
To obtain all the prices within an interval, you can specify both after and before.
Omit both after and before to obtain the entire price history for that NFT.
Sort order is by price date in ascending direction, except when the before parameter is specified and the after parameter is omitted.
Available in the Starter and higher subscription plans.
Response Field | Data Type | Description |
---|---|---|
next_offset | number | The offsite for the next page of results. If null, no more results are available |
prices | array of objects | The list of prices for that token |
tokens[].price_date | string | The date the price was calculated, in ISO notation (UTC time) |
tokens[].price_native | number | See GET token for details |
tokens[].price_min_native | number | See GET token for details |
tokens[].price_max_native | number | See GET token for details |
tokens[].price_eth | number | See GET token for details (deprecated) |
tokens[].price_min_eth | number | See GET token for details (deprecated) |
tokens[].price_max_eth | number | See GET token for details (deprecated) |
model_version | string | The Nabu machine learning model used to calculate the price |