Marketplace
No threads yet
Live

get_token_details

gmgn.ai

Returns comprehensive Solana token statistics from https://gmgn.ai by contract address, including holder analytics, security flags, creator data, fees, and launchpad information.

Parameters1
Runs3
Updated5h ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_token_details?

Returns comprehensive Solana token statistics from https://gmgn.ai by contract address, including holder analytics, security flags, creator data, fees, and launchpad information. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass contract_address and get the result back without maintaining a scraper.

Response

{
  "token": {},
  "launchpad_info": {},
  "contract_address": "<string>",
  "holder_analytics": {},
  "security_summary": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5c341f02-7b01-470c-b9c2-7c2fe594bc7b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5c341f02-7b01-470c-b9c2-7c2fe594bc7b",
    "variables": {
        "contract_address": "A8k3g5BpQveiw647vCpDKmXjBz18nzLNXdL85YHipump"
    }
}'

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="5c341f02-7b01-470c-b9c2-7c2fe594bc7b") — the "get_token_details" function, which returns comprehensive Solana token statistics from https://gmgn.ai by contract address, including holder analytics, security flags, creator data, fees, and launchpad information..

It takes contract_address (str). Return the result as structured JSON.