get_cs2_player_career_stats
bo3.ggRetrieves aggregated CS2 career totals and tournament results for one professional player from https://bo3.gg. The player is selected by URL slug and statistics are restricted to a caller-selected date window.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_cs2_player_career_stats?
Retrieves aggregated CS2 career totals and tournament results for one professional player from https://bo3.gg. The player is selected by URL slug and statistics are restricted to a caller-selected date window. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_slug, start_date, end_date, tournament_limit and get the result back without maintaining a scraper.
Response
{
"end_date": "<string>",
"start_date": "<string>",
"player_slug": "<string>",
"career_totals": {},
"player_profile_url": "<string>",
"tournament_results": [
{}
],
"tournament_summary": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/8d67defa-db94-431c-890c-6279baf893f8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8d67defa-db94-431c-890c-6279baf893f8",
"variables": {
"player_slug": "donk",
"start_date": "",
"end_date": "today",
"tournament_limit": 50
}
}'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="8d67defa-db94-431c-890c-6279baf893f8") — the "get_cs2_player_career_stats" function, which retrieves aggregated CS2 career totals and tournament results for one professional player from https://bo3.gg. The player is selected by URL slug and statistics are restricted to a caller-selected date window.. It takes player_slug (str), start_date (str), end_date (str), tournament_limit (int). Return the result as structured JSON.