get_valorant_tournament_stats
liquipedia.netReturns Valorant agent pick rates when available, complete player statistics, map play counts, side results, and map bans from an exact tournament statistics wiki path on https://liquipedia.net. Returns stale_input when the specified 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_valorant_tournament_stats?
Returns Valorant agent pick rates when available, complete player statistics, map play counts, side results, and map bans from an exact tournament statistics wiki path on https://liquipedia.net. Returns stale_input when the specified 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_path and get the result back without maintaining a scraper.
Response
{
"status": "<string>",
"message": "<string>",
"page_id": 0,
"wiki_path": "<string>",
"page_title": "<string>",
"player_stats": [
{
"rank": 0,
"team": "<string>",
"stats": {},
"agents": [
"<string>"
],
"player": "<string>",
"country": "<string>",
"team_wiki_path": "<string>",
"player_wiki_path": "<string>"
}
],
"display_title": "<string>",
"map_ban_counts": [
{
"map": "<string>",
"total": 0,
"by_stage": {}
}
],
"map_side_stats": [
{
"map": "<string>",
"attack_wins": 0,
"defense_wins": 0,
"attack_win_rate": "<string>",
"defense_win_rate": "<string>"
}
],
"map_play_counts": [
{
"map": "<string>",
"total": 0,
"by_stage": {}
}
],
"agent_pick_rates": [
{
"agent": "<string>",
"fields": {},
"pick_rate": "<string>"
}
],
"agent_pick_rates_available": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/e8b4dc60-5673-48f2-a64a-c6e8fa4222dd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e8b4dc60-5673-48f2-a64a-c6e8fa4222dd",
"variables": {
"wiki_path": "/valorant/VCT/2025/Stage_2/Masters/Statistics"
}
}'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="e8b4dc60-5673-48f2-a64a-c6e8fa4222dd") — the "get_valorant_tournament_stats" function, which returns Valorant agent pick rates when available, complete player statistics, map play counts, side results, and map bans from an exact tournament statistics wiki path on https://liquipedia.net. Returns stale_input when the specified page does not exist.. It takes wiki_path (str). Return the result as structured JSON.