get_counterstrike_esports_data
liquipedia.netReturns comprehensive Counter-Strike player, team, and tournament records from exact wiki paths on https://liquipedia.net, including infobox fields, rosters, results, statistics tables, page sections, and related links. Multiple page types can be combined; missing pages return stale_input.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_counterstrike_esports_data?
Returns comprehensive Counter-Strike player, team, and tournament records from exact wiki paths on https://liquipedia.net, including infobox fields, rosters, results, statistics tables, page sections, and related links. Multiple page types can be combined; missing pages return stale_input. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_path, team_path, tournament_path and get the result back without maintaining a scraper.
Response
{
"pages": [
{
"kind": "<string>",
"tables": [
{
"rows": [
{
"values": {},
"wiki_paths": {}
}
],
"title": "<string>",
"columns": [
"<string>"
],
"section": "<string>"
}
],
"page_id": 0,
"summary": "<string>",
"sections": {},
"wiki_path": "<string>",
"categories": [
"<string>"
],
"page_title": "<string>",
"display_title": "<string>",
"external_links": [
{
"url": "<string>",
"label": "<string>"
}
],
"infobox_fields": {},
"requested_path": "<string>",
"infobox_sections": {},
"related_wiki_paths": [
{
"url": "<string>",
"label": "<string>"
}
]
}
],
"status": "<string>",
"message": "<string>",
"stale_inputs": [
{
"kind": "<string>",
"value": "<string>",
"reason": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/e90054e3-8fb1-4ace-a93b-06f5066dc7ab/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e90054e3-8fb1-4ace-a93b-06f5066dc7ab",
"variables": {
"player_path": "/counterstrike/S1mple",
"team_path": "",
"tournament_path": ""
}
}'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="e90054e3-8fb1-4ace-a93b-06f5066dc7ab") — the "get_counterstrike_esports_data" function, which returns comprehensive Counter-Strike player, team, and tournament records from exact wiki paths on https://liquipedia.net, including infobox fields, rosters, results, statistics tables, page sections, and related links. Multiple page types can be combined; missing pages return stale_input.. It takes player_path (str), team_path (str), tournament_path (str). Return the result as structured JSON.