Live
list_player_match_statistics
bo3.ggReturns recent per-match CS2 player statistics from https://bo3.gg, ordered newest first with complete non-empty match, team, tournament, map, and performance data.
Parameters2
Runs6
Updated4d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_player_match_statistics?
Returns recent per-match CS2 player statistics from https://bo3.gg, ordered newest first with complete non-empty match, team, tournament, map, and performance data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_slug, limit and get the result back without maintaining a scraper.
Response
{
"matches": [
{}
],
"player_slug": "<string>",
"returned_count": 0,
"requested_limit": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5bacc94e-423f-41c8-ad4d-95733e43ad60/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5bacc94e-423f-41c8-ad4d-95733e43ad60",
"variables": {
"player_slug": "donk",
"limit": 15
}
}'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="5bacc94e-423f-41c8-ad4d-95733e43ad60") — the "list_player_match_statistics" function, which returns recent per-match CS2 player statistics from https://bo3.gg, ordered newest first with complete non-empty match, team, tournament, map, and performance data.. It takes player_slug (str), limit (int). Return the result as structured JSON.