Live on Solana mainnet 9cRC…pump

Airdrop the herd.
Every holder. Live.

"If it's something novel, just airdrop supply to all $ANSEM holders." This is the tool for that — the complete holder ledger, aggregated straight from Solana token accounts and auto-updated every 30 seconds. Curate the list by bag size, drop the liquidity pools, download it, or pull it from the open API.

Supply concentration syncing…
Top 10 11–50 51–100 Everyone else
Holders
Circulating supply
Top 10 hold
Median top-100 bag

Grab the Herd

richest first · auto-updates every 30s
Download curated CSV
# Wallet Balance ($ANSEM) Share of supply
Reading the chain…
Full list in the CSV download or the API

Open API

no key · no auth · CORS enabled
GET/api/holders

Current holder list, richest first, refreshed every 30 seconds. Balances are aggregated per owner wallet across all of its token accounts. Curation params: min / max (token balance bounds), excludePools=true (drop AMM pools, vaults, and other program-owned accounts), plus limit and offset.

curl "https://yourhost/api/holders?min=100000&excludePools=true&limit=10000"

{
  "mint": "9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump",
  "updatedAt": "2026-07-06T18:04:11.000Z",
  "totalHolders": 114978,
  "matching": 1893,
  "holders": [
    { "rank": 2, "owner": "2xmD…sYCc", "amount": 10700000.58, "percent": 1.07, "isPool": false }
  ]
}
GET/api/stats

Lightweight snapshot without the holder list: supply, holder count, token-account count, pools flagged, and top-1/10/50/100 concentration.

GET/api/holders/csv

The ledger as a CSV file — rank, owner, amount, percent, is_pool. Takes the same curation params as /api/holders, so an airdrop list is one request.

curl -o airdrop-list.csv "https://yourhost/api/holders/csv?min=50000&excludePools=true"