"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.
| # | Wallet | Balance ($ANSEM) | Share of supply |
|---|---|---|---|
| Reading the chain… | |||
/api/holdersCurrent 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 }
]
}
/api/statsLightweight snapshot without the holder list: supply, holder count, token-account count, pools flagged, and top-1/10/50/100 concentration.
/api/holders/csvThe 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"