Documentation Index
Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
Use this file to discover all available pages before exploring further.
Returns
Per-window stats for the token. See DetailedTokenStats.Show View fields (DetailedTokenStats)
Token identifier in address:networkId form.
Last transaction timestamp (unix seconds).
Number of buckets per window.
stats_min5
WindowedDetailedTokenStats
stats_hour1
WindowedDetailedTokenStats
stats_hour4
WindowedDetailedTokenStats
stats_hour12
WindowedDetailedTokenStats
stats_day1
WindowedDetailedTokenStats
Arguments
Optional timestamp for historical stats.
durations
[DetailedTokenStatsDuration]
Show DetailedTokenStatsDuration (enum)
min5
DetailedTokenStatsDuration
5-minute window.
min15
DetailedTokenStatsDuration
15-minute window. Accepted but not computed.
hour1
DetailedTokenStatsDuration
1-hour window.
hour4
DetailedTokenStatsDuration
4-hour window.
hour12
DetailedTokenStatsDuration
12-hour window.
day1
DetailedTokenStatsDuration
1-day window.
week1
DetailedTokenStatsDuration
1-week window. Accepted but not computed.
day30
DetailedTokenStatsDuration
30-day window. Accepted but not computed.
Number of buckets per window.
Show TokenPairStatisticsType (enum)
Example
{
getDetailedTokenStats(
tokenAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7"
networkId: 1
durations: [hour1, day1]
) {
tokenId
tokenAddress
networkId
lastTransactionAt
statsType
stats_hour1 {
statsUsd {
volume { currentValue previousValue change }
buyVolume { currentValue previousValue change }
sellVolume { currentValue previousValue change }
}
statsNonCurrency {
transactions { currentValue previousValue change }
buyers { currentValue previousValue change }
sellers { currentValue previousValue change }
}
}
}
}
Playground