DeAnon
Fetches all token holders for a given Solana mint address and cross-references wallet addresses against a curated lookup table of over 20,000 known wallet-to-Twitter mappings, and returns identified holders sorted by balance descending with pagination.
Query parameters
mintstring · min: 32 · max: 44RequiredExample:
Solana token mint address (32-44 Base58 characters)
So11111111111111111111111111111111111111112limitinteger · min: 1 · max: 100OptionalDefault:
Number of results per page (1-100)
20offsetintegerOptionalDefault:
Number of results to skip for pagination
0Responses
200
Identified holders for the given token.
application/json
Response from the DeAnon holders endpoint. Contains identified token holders matched against a curated wallet-to-Twitter lookup table.
mintstringOptionalExample:
The requested token mint address
So11111111111111111111111111111111111111112total_holders_fetchedintegerOptionalExample:
Total number of token accounts fetched from Helius RPC (up to 10,000)
8432identified_countintegerOptionalExample:
Number of holders matched against the lookup table
47400
Invalid or missing mint address.
application/json
get/api/deanon.php?action=holders
GET /api/deanon.php?action=holders?mint=text HTTP/1.1
Host: api.indexify.finance
Accept: */*
{
"mint": "So11111111111111111111111111111111111111112",
"total_holders_fetched": 8432,
"identified_count": 47,
"identified_holders": [
{
"rank": 1,
"owner": "498g1rVnFcnjBjpfw1xyqA1WvgQXUU8RWuELjxkjAayQ",
"twitter": "https://x.com/frankdegods",
"balance": 152340.5,
"pct_supply": 0.012345
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total_count": 47,
"has_more": true,
"has_previous": false,
"page": 1,
"total_pages": 3
}
}Last updated

