Returns
Arguments
The contract address of the token.
The network ID the token is deployed on.
The unix timestamp for the stats. Defaults to current.
The list of durations to get detailed token stats for.
See DetailedTokenStatsDuration
The number of aggregated values to receive. Note: Each duration has predetermined bucket sizes. The first n-1 buckets are historical. The last bucket is a snapshot of current data. duration
day1: 6 buckets (4 hours each) plus 1 partial bucket duration hour12: 12 buckets (1 hour each) plus 1 partial bucket duration hour4: 8 buckets (30 min each) plus 1 partial bucket duration hour1: 12 buckets (5 min each) plus 1 partial bucket duration min5: 5 buckets (1 min each) plus 1 partial bucket For example, requesting 11 buckets for a min5 duration will return the last 10 minutes worth of data plus a snapshot for the current minute.The type of statistics returned. Can be
FILTERED or UNFILTERED. Default is UNFILTERED.
See TokenPairStatisticsTypeExample
Test this query in the Explorer →Usage Guidelines
- Query using
tokenAddressandnetworkId— this aggregates stats across all pairs for the token - Use
durationsarray to request specific time windows:min5,min15,hour1,hour4,hour12,day1,week1,day30 - Stats are returned in separate fields like
stats_hour1,stats_day1, etc. based on requested durations statsUsdcontains USD-denominated metrics: volume, buyVolume, sellVolume, open, highest, lowest, close, liquiditystatsNonCurrencycontains count metrics: transactions, buys, sells, traders, buyers, sellers- Each metric includes
currentValue,previousValue, andchange(percent change in decimal format, e.g. -0.52 = -52%) - Use
bucketsarray within each metric for granular time-series data within the duration window - Use
timestampsarray to map bucket indices to their corresponding time ranges
Troubleshooting Tips
What is the difference between getDetailedTokenStats and getDetailedPairStats?
What is the difference between getDetailedTokenStats and getDetailedPairStats?
getDetailedTokenStats aggregates stats across all pairs for a given token, giving you a holistic view of the token’s activity. getDetailedPairStats returns stats for a specific pair, which is useful when you care about a token’s activity within a single liquidity pool.What's the difference between FILTERED and UNFILTERED statsType?
What's the difference between FILTERED and UNFILTERED statsType?
FILTERED stats exclude suspected bot and MEV activity to show organic trading. UNFILTERED (the default) includes all transactions. Use the statsType parameter to choose which type you want.How do I use the buckets array for charting?
How do I use the buckets array for charting?
Each metric includes a
buckets array with values for sub-intervals within the duration. For example, stats_hour1 might contain 12 buckets of 5 minutes each. Use the timestamps array at the same level to map each bucket index to its start/end time range, which gives you the x-axis for your chart.Why is change showing as null?
Why is change showing as null?
The
change field requires both currentValue and previousValue to calculate. For very new tokens or time windows with no previous data, change may be null.How do I get historical stats?
How do I get historical stats?
Use the
timestamp parameter to query stats as of a specific point in time. By default, stats are returned for the current time.How does bucketCount work?
How does bucketCount work?
The
bucketCount parameter controls how many sub-intervals the duration is divided into. For example, requesting stats_hour1 with bucketCount: 12 gives you twelve 5-minute buckets. This affects the length of the buckets array within each metric.