Marketplace
No threads yet
Live

get_league_of_legends_champion_statistics

leagueofgraphs.com

Gets current-patch League of Legends champion statistics from https://leagueofgraphs.com, sorted by popularity, including win, pick, and ban rates, KDA, role, and tier classification.

Parameters3
Runs15
Updated10d ago
Degraded15 runs · 60% 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_league_of_legends_champion_statistics?

Gets current-patch League of Legends champion statistics from https://leagueofgraphs.com, sorted by popularity, including win, pick, and ban rates, KDA, role, and tier classification. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, rank, role and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "patch": "<string>",
  "filters": {},
  "champions": [
    {}
  ],
  "sorted_by": "<string>",
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/dd816b2e-a072-4d0f-8e4d-e978ee577884/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "dd816b2e-a072-4d0f-8e4d-e978ee577884",
    "variables": {
        "region": "all",
        "rank": "all",
        "role": "all"
    }
}'

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="dd816b2e-a072-4d0f-8e4d-e978ee577884") — the "get_league_of_legends_champion_statistics" function, which gets current-patch League of Legends champion statistics from https://leagueofgraphs.com, sorted by popularity, including win, pick, and ban rates, KDA, role, and tier classification..

It takes region (str), rank (str), role (str). Return the result as structured JSON.