Prices
Daily Prices
Historical daily price data for tokens across all supported blockchains, aggregated at 00:00 UTC
Prices.day
The prices.day
table provides daily price data for tokens across multiple blockchains, aggregated at 00:00 UTC.
For details on price calculation methodology, including VWAP calculations and outlier filtering, see the Prices Overview.
Table Structure
Column name | Data type | Description |
---|---|---|
contract_address | varbinary | Unique identifier of the token (contract address for ERC20, mint address for Solana, null for native currencies) |
blockchain | varchar | The blockchain on which the token exists |
symbol | varchar | The identifier of the asset (ticker, cashtag) |
price | double | The daily price of the asset in USD |
timestamp | timestamp | The timestamp for which this price is reported (00:00 UTC) |
Usage
This table is ideal for analyzing daily price trends and performing day-over-day comparisons. It provides a good balance between data granularity and query performance for longer-term analyses.
Latency and Update Frequency
The prices.day
table is updated daily at 00:00 UTC, providing the closing price for the previous day. Data is typically available within 30 minutes of the daily close.
Example Query
Notes
- Prices are calculated on a per-chain basis.
- For tokens not in the trusted token list, prices may differ across chains.
- Always use
contract_address
andblockchain
for precise token identification,symbol
is not unique. - For details on price calculation methodology, including VWAP calculations and outlier filtering, see the Prices Overview.
Was this page helpful?