Skip to main content

2026.07.23 - Release Wallet Identity APIs and Solana Top Traders Improvements

New Identity APIs to resolve Solana wallet labels and domains, plus Solana-only improvements for the Token Top Traders API.

Features

Wallet Identity - Single

GET /identity/v1/single
  • Resolve one wallet address or .sol domain to a compact identity
  • Return identity type, named entity, display label, category, tags, and wallet domain preview
  • Include domains_total for wallets with owned .sol domains
  • Support Lite API access

Parameters

Wallet Identity - Multiple

POST /identity/v1/multiple
  • Resolve up to 100 wallet addresses or .sol domains in one request
  • Return an identity map keyed by input address
  • De-duplicate repeated addresses in the request
  • Require Premium API access or higher

Request Body

Wallet Identity - Domains

GET /identity/v1/domains
  • Return the full paginated .sol domain list owned by one wallet
  • Support wallets with very large domain ownership counts
  • Order domains shortest-first, then alphabetical
  • Support Lite API access

Parameters

Token - Top Traders

GET /defi/v2/tokens/top_traders
  • Add Solana holder stats to help analyze whether top traders are still holding, accumulating, or selling the token
  • Support all_time for Solana top traders
  • Support sorting Solana traders by hold_volume
  • Support filtering Solana traders by wallet tags through the wallet_tags parameter
  • Rename the public smart-money wallet tag to smart_trader
  • Return Solana holder position stats such as hold volume, hold value, and average buy/sell prices
  • Support optional holder net worth stats through get_holders_networth, including wallet net worth, SOL balance, and funding source details
  • Keep existing behavior unchanged for non-Solana chains

Parameters

Response Additions

For Solana requests, each trader item may include holder trading stats:
  • holdVolume
  • holdVolumeUsd
  • holdAvgPrice
  • avgBuyPrice
  • avgSellPrice
  • firstTradeUnixTime
  • lastTradeUnixTime
When get_holders_networth=true, each trader item may also include holder net worth stats:
  • netWorth
  • solBalance
  • funding
Usage Note: get_holders_networth=true enriches each trader with holder stats from net worth and funding data. This may make the response slightly slower than regular top traders requests. Compatibility Note: Top Traders changes are Solana-only. Non-Solana chains keep the existing supported time_frame, sort_by, parameters, and response behavior.