The Token object holds price information about a specific NFT, at a certain point in time.
Attribute Name | Data Type | Description |
---|---|---|
contract_address | string | The contract address for the collection, matching the regexp /^0x[0-9a-f]{40}$/ |
token_id | string | The token id within the contract (base 10 notation) |
price_native | number | The estimated price in the native currency for the chain (Ether on Ethereum, MATIC on Polygon) |
price_min_native | number | The lower bound of our price prediction in native currency, or null if not available. There is a 95% confidence that the price of the NFT is higher than this |
price_max_native | number | The higher bound of our price prediction in native currency, or null if not available. There is a 95% confidence that the price of the NFT is lower than this |
price_eth | number (decimal) | The estimated price of that NFT in Ether, or null if not available (deprecated) |
price_min_eth | number (decimal) | The lower bound of our price prediction in Ether, or null if not available. There is a 95% confidence that the price of the NFT is higher than this (deprecated) |
price_max_eth | number (decimal) | The higher bound of our price prediction in Ether, or null if not available. There is a 95% confidence that the price of the NFT is lower than this (deprecated) |
price_date | string | The date the price was calculated, in ISO notation (UTC time) |
collection_name | string | The name of the collection the token belongs to (present only in the Prices by Wallet endpoint) |
currency_info | Currency Info | Information about the cryptocurrency associated with this token. |