Live
list_token_holders
gmgn.aiReturns Solana token holders from https://gmgn.ai ordered by holding percentage, with balances, USD values, profit, cost basis, wallet tags, and cursor pagination.
Parameters3
Runs4
Updated5h ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_token_holders?
Returns Solana token holders from https://gmgn.ai ordered by holding percentage, with balances, USD values, profit, cost basis, wallet tags, and cursor pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass contract_address, limit, cursor and get the result back without maintaining a scraper.
Response
{
"chain": "<string>",
"count": 0,
"limit": 0,
"holders": [
{}
],
"has_more": true,
"order_by": "<string>",
"direction": "<string>",
"next_cursor": "<string>",
"contract_address": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c15871c-3d63-4880-821c-665504e9dac6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c15871c-3d63-4880-821c-665504e9dac6",
"variables": {
"contract_address": "DEFAULT_CONTRACT_ADDRESS",
"limit": 20,
"cursor": ""
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3c15871c-3d63-4880-821c-665504e9dac6") — the "list_token_holders" function, which returns Solana token holders from https://gmgn.ai ordered by holding percentage, with balances, USD values, profit, cost basis, wallet tags, and cursor pagination.. It takes contract_address (str), limit (int), cursor (str). Return the result as structured JSON.