Minute Prices
Real-time minute-by-minute price data for tokens across all supported blockchains
Prices.minute
The prices.minute
table provides the most granular price data for tokens across multiple blockchains, updated every minute.
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 price of the asset in USD for each minute |
timestamp | timestamp | The timestamp for which this price is reported |
Usage
This table is ideal for high-frequency analysis and examining short-term price movements. It’s particularly useful for studying price impacts of specific events or transactions.
Latency and Update Frequency
The prices.minute
table is updated hourly based on the upstream dex.trades
data pipeline. As a result, prices typically have a latency of approximately 1 hour from real-time.
Example Query
This query retrieves minute-by-minute prices for WETH on Ethereum for the past hour.
Notes
- Due to its high granularity, queries on this table may be more resource-intensive. Consider using
prices.hour
orprices.day
for longer time ranges or if minute-level precision is not required. - As with all price tables, always use
contract_address
andblockchain
for precise token identification. - The minute-level data is particularly useful for analyzing price impacts of specific transactions or events with high temporal precision.
- For details on price calculation methodology, including VWAP calculations and outlier filtering, see the Prices Overview.
Was this page helpful?