Marketplace
No threads yet
Live

list_top_traders

gmgn.ai

Returns the Solana top-traders leaderboard from https://gmgn.ai ranked by PnL or realized profit, with wallet profit, win-rate, trade, balance, social, and tag fields.

Parameters2
Runs3
Updated5h ago

Playground

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

What is list_top_traders?

Returns the Solana top-traders leaderboard from https://gmgn.ai ranked by PnL or realized profit, with wallet profit, win-rate, trade, balance, social, and tag fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass rank_by, period and get the result back without maintaining a scraper.

Response

{
  "chain": "<string>",
  "count": 0,
  "period": "<string>",
  "rank_by": "<string>",
  "traders": [
    {}
  ],
  "direction": "<string>",
  "metric_field": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f8ac0a75-18a5-4c56-a19b-c9f004f478e0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f8ac0a75-18a5-4c56-a19b-c9f004f478e0",
    "variables": {
        "rank_by": "realized_profit",
        "period": "7d"
    }
}'

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="f8ac0a75-18a5-4c56-a19b-c9f004f478e0") — the "list_top_traders" function, which returns the Solana top-traders leaderboard from https://gmgn.ai ranked by PnL or realized profit, with wallet profit, win-rate, trade, balance, social, and tag fields..

It takes rank_by (str), period (str). Return the result as structured JSON.