Live
list_trending_tokens
gmgn.aiReturns ranked Solana tokens from https://gmgn.ai with price, volume, market cap, holders, swaps, launchpad context, and security indicators for a selected timeframe.
Parameters2
Runs5
Updated5h ago
Operational5 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_trending_tokens?
Returns ranked Solana tokens from https://gmgn.ai with price, volume, market cap, holders, swaps, launchpad context, and security indicators for a selected timeframe. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeframe, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"tokens": [
{
"name": "<string>",
"rank": 0,
"chain": "<string>",
"price": 0,
"symbol": "<string>",
"volume": 0,
"interval": "<string>",
"buy_count": 0,
"launchpad": "<string>",
"liquidity": 0,
"market_cap": 0,
"sell_count": 0,
"swap_count": 0,
"holder_count": 0,
"source_fields": {},
"contract_address": "<string>",
"dev_holding_ratio": 0,
"launchpad_platform": "<string>",
"security_indicators": {},
"top_10_holder_ratio": 0,
"price_change_percent": 0,
"all_time_high_market_cap": 0
}
],
"timeframe": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6ae2bb3a-8f25-4160-858b-25543bcbc958/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6ae2bb3a-8f25-4160-858b-25543bcbc958",
"variables": {
"timeframe": "1h",
"limit": 10
}
}'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="6ae2bb3a-8f25-4160-858b-25543bcbc958") — the "list_trending_tokens" function, which returns ranked Solana tokens from https://gmgn.ai with price, volume, market cap, holders, swaps, launchpad context, and security indicators for a selected timeframe.. It takes timeframe (str), limit (int). Return the result as structured JSON.