API Reference

Retrieves historical token price estimates.

Log in to see full request history

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 FieldData TypeDescription
next_offsetnumberThe offsite for the next page of results. If null, no more results are available
pricesarray of objectsThe list of prices for that token
tokens[].price_datestringThe date the price was calculated, in ISO notation (UTC time)
tokens[].price_nativenumberSee GET token for details
tokens[].price_min_nativenumberSee GET token for details
tokens[].price_max_nativenumberSee GET token for details
tokens[].price_ethnumberSee GET token for details (deprecated)
tokens[].price_min_ethnumberSee GET token for details (deprecated)
tokens[].price_max_ethnumberSee GET token for details (deprecated)
model_versionstringThe Nabu machine learning model used to calculate the price
Path Params
string
required

The crypto chain hosting the contract. Valid values are ETH and MATIC

string
required

NFT contract address (eg. 0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb)

string
required

Token number (eg. 5682)

Query Params
int64

Limit the results to prices assessed after the specified time (epoch in seconds)

int64

Limits the results to prices assessed before the specified time (epoch in seconds). If the field is specified, and the after field is not specified, the results will be sorted from newest to oldest price

int32
Defaults to 100

Maximum number of tokens to return. Integer between 1 and 1000

int32
Defaults to 0

Result page offset to receive additional records

Responses

Language
Credentials
Request
Click Try It! to start a request and see the response here! Or choose an example:
application/json