list_team_played_matches
liquipedia.netReturns individual League of Legends game rows for a team from https://liquipedia.net, including dates, tiers, tournaments, results, picks, bans, durations, patches, opponents, VODs, and match IDs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_team_played_matches?
Returns individual League of Legends game rows for a team from https://liquipedia.net, including dates, tiers, tournaments, results, picks, bans, durations, patches, opponents, VODs, and match IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"games": [
{}
],
"status": "<string>",
"team_name": "<string>",
"team_slug": "<string>",
"page_title": "<string>",
"source_url": "<string>",
"total_games": 0,
"generated_at": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/9e3cd955-38c5-45c6-b7c5-3e82a26e619c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9e3cd955-38c5-45c6-b7c5-3e82a26e619c",
"variables": {
"team_slug": "Team_Liquid",
"timeout_seconds": 40
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9e3cd955-38c5-45c6-b7c5-3e82a26e619c") — the "list_team_played_matches" function, which returns individual League of Legends game rows for a team from https://liquipedia.net, including dates, tiers, tournaments, results, picks, bans, durations, patches, opponents, VODs, and match IDs.. It takes team_slug (str), timeout_seconds (int). Return the result as structured JSON.