Added

2026.07.22 - Release Wallet Tag Tracker API

New API to track tagged wallet trading behavior for a Solana token over time.

Features

Token - Wallet Tags Tracker

GET /token/v1/wallet-tags-tracker

  • Track how tagged wallets trade a Solana token over time
  • Return buy and sell volume, USD volume, distinct wallet counts, and transaction counts bucketed by interval
  • Group activity by wallet tag, exact tag combination, and top 10 holder activity
  • Support filtering by specific tags through the tags parameter
  • Support optional top_10_holder and include_tag_combinations views

Parameters

ParameterTypeRequiredDefaultDescription
x-chainstringNosolanaChain header. Only Solana is supported.
token_addressstringYes-Token mint address.
from_timeintegerYes-Start of the range as a Unix timestamp in seconds.
to_timeintegerNocurrent timeEnd of the range as a Unix timestamp in seconds. Must be greater than or equal to from_time.
intervalstringNo1DBucket size for the time series.
tagsstringNoall tagsComma-separated list of wallet tags to include.
top_10_holderbooleanNofalseSet to true to include the top 10 holder series.
include_tag_combinationsbooleanNofalseSet to true to include the exact tag combination block.

Usage Note: The maximum allowed time range depends on the selected interval.