Marketplace
No threads yet
Live

list_league_teams

liquipedia.net

Returns League of Legends teams from https://liquipedia.net with wiki slugs, regions, league sections, activity status, and active years, with optional year-range filtering.

Parameters3
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_league_teams?

Returns League of Legends teams from https://liquipedia.net with wiki slugs, regions, league sections, activity status, and active years, with optional year-range filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start_year, end_year, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "teams": [
    {}
  ],
  "status": "<string>",
  "source_url": "<string>",
  "total_teams": 0,
  "generated_at": "<string>",
  "filter_end_year": 0,
  "filter_start_year": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/97fc5f20-e8f0-4178-9da3-d0b56850d050/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "97fc5f20-e8f0-4178-9da3-d0b56850d050",
    "variables": {
        "start_year": 0,
        "end_year": 0,
        "timeout_seconds": 35
    }
}'

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="97fc5f20-e8f0-4178-9da3-d0b56850d050") — the "list_league_teams" function, which returns League of Legends teams from https://liquipedia.net with wiki slugs, regions, league sections, activity status, and active years, with optional year-range filtering..

It takes start_year (int), end_year (int), timeout_seconds (int). Return the result as structured JSON.