Marketplace
No threads yet
Live

list_player_rankings

leagueofgraphs.com

Returns one paginated League of Legends solo queue player ranking page from https://leagueofgraphs.com with regional filtering and complete non-empty player fields.

Parameters2
Runs8
Updated3d ago
Operational8 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 list_player_rankings?

Returns one paginated League of Legends solo queue player ranking page from https://leagueofgraphs.com with regional filtering and complete non-empty player fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "region": "<string>",
  "players": [
    {}
  ],
  "pagination": {},
  "source_url": "<string>",
  "player_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8f11dc06-8aa1-495b-9138-7e5e04a767e5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8f11dc06-8aa1-495b-9138-7e5e04a767e5",
    "variables": {
        "region": "all",
        "page": 1
    }
}'

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="8f11dc06-8aa1-495b-9138-7e5e04a767e5") — the "list_player_rankings" function, which returns one paginated League of Legends solo queue player ranking page from https://leagueofgraphs.com with regional filtering and complete non-empty player fields..

It takes region (str), page (int). Return the result as structured JSON.