Marketplace
No threads yet
Live

list_tft_player_rankings

leagueofgraphs.com

Returns paginated Teamfight Tactics player rankings by LP from https://leagueofgraphs.com with rank, summoner, region, level, tier, LP, wins, games played, profile URL and icon URL.

Parameters2
Runs6
Updated3d ago
Operational6 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_tft_player_rankings?

Returns paginated Teamfight Tactics player rankings by LP from https://leagueofgraphs.com with rank, summoner, region, level, tier, LP, wins, games played, profile URL and icon URL. 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,
  "count": 0,
  "region": "<string>",
  "players": [
    {
      "lp": 0,
      "rank": 0,
      "tier": "<string>",
      "wins": 0,
      "level": 0,
      "region": "<string>",
      "icon_url": "<string>",
      "profile_url": "<string>",
      "games_played": 0,
      "summoner_name": "<string>"
    }
  ],
  "source_url": "<string>",
  "current_set": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/72c9afef-c802-458c-9e19-fbee3f8c09eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "72c9afef-c802-458c-9e19-fbee3f8c09eb",
    "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="72c9afef-c802-458c-9e19-fbee3f8c09eb") — the "list_tft_player_rankings" function, which returns paginated Teamfight Tactics player rankings by LP from https://leagueofgraphs.com with rank, summoner, region, level, tier, LP, wins, games played, profile URL and icon URL..

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