get_team_roster
liquipedia.netReturns the current active team roster from https://liquipedia.net for a specified Liquipedia wiki and team page. Includes player IDs, real names, join dates, positions when available, and stale_input when the team page does not exist.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_team_roster?
Returns the current active team roster from https://liquipedia.net for a specified Liquipedia wiki and team page. Includes player IDs, real names, join dates, positions when available, and stale_input when the team page does not exist. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass wiki, team_page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"wiki": "<string>",
"status": "<string>",
"message": "<string>",
"players": [
{
"fields": {},
"position": "<string>",
"join_date": "<string>",
"player_id": "<string>",
"real_name": "<string>"
}
],
"team_page": "<string>",
"page_title": "<string>",
"stale_input": {
"kind": "<string>",
"value": "<string>",
"reason": "<string>"
},
"team_page_url": "<string>",
"total_players": 0,
"generated_at_pht": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d5152e76-8aae-4aad-97dd-6e5860e92ff7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d5152e76-8aae-4aad-97dd-6e5860e92ff7",
"variables": {
"wiki": "counterstrike",
"team_page": "Team_Liquid",
"timeout_seconds": 30
}
}'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="d5152e76-8aae-4aad-97dd-6e5860e92ff7") — the "get_team_roster" function, which returns the current active team roster from https://liquipedia.net for a specified Liquipedia wiki and team page. Includes player IDs, real names, join dates, positions when available, and stale_input when the team page does not exist.. It takes wiki (str), team_page (str), timeout_seconds (int). Return the result as structured JSON.