Skip to main content

AddressStats

The AddressStats API schema returns information about a wallet on its inflows, outflows and activity. The schema includes the following fields:

Address statistics provide aggregate metrics for a Cardano address: transaction counts, sent and received amounts, fee totals, and active-day counts. These summaries help staking platforms, compliance tools, and portfolio trackers assess an address's activity profile without replaying individual eUTXO transactions.

query MyQuery {
cardano(network: cardano) {
addressStats(
address: {is: "addr1q8wp4tc65hgvvff0lg2dgp8dnd2hy5u4vyz9mgk8qancwmtdf8tun55syv9gvfd0dgdhx02vlyg6dp56up92a5l9qxhs9nhrfy"}
) {
address {
address
annotation
balance
firstActive {
time
}
inboundTransactions
inflows
lastActive {
time
}
outboundTransactions
outflows
uniqueDaysWithTransfers
uniqueReceivers
uniqueSenders
}
}
}
}
Filtering AddressStats

address The address of the wallet

options Additional options for the query, such as sorting and pagination.