For the complete documentation index, see llms.txt. This page is also available as Markdown.

DeAnon

Identify known holders of a token

get

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: 44Required

Solana token mint address (32-44 Base58 characters)

Example: So11111111111111111111111111111111111111112
limitinteger · min: 1 · max: 100Optional

Number of results per page (1-100)

Default: 20
offsetintegerOptional

Number of results to skip for pagination

Default: 0
Responses
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.

mintstringOptional

The requested token mint address

Example: So11111111111111111111111111111111111111112
total_holders_fetchedintegerOptional

Total number of token accounts fetched from Helius RPC (up to 10,000)

Example: 8432
identified_countintegerOptional

Number of holders matched against the lookup table

Example: 47
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