list_player_statistics
vlr.ggReturns the VLR.gg player leaderboard from https://vlr.gg with all performance metrics, agent usage, player paths, and filters for period, region, agent, and tier.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_player_statistics?
Returns the VLR.gg player leaderboard from https://vlr.gg with all performance metrics, agent usage, player paths, and filters for period, region, agent, and tier. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass time_period, region, agent, tier, minimum_rounds, limit, from_date, to_date and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"tier": "<string>",
"agent": "<string>",
"region": "<string>",
"players": [
{
"rank": 0,
"agents": [
{
"agent": "<string>",
"usage_percent": 0
}
],
"rating": 0,
"maps_played": 0,
"player_name": "<string>",
"player_path": "<string>",
"total_kills": 0,
"clutches_won": 0,
"country_code": "<string>",
"kast_percent": 0,
"total_deaths": 0,
"rounds_played": 0,
"total_assists": 0,
"clutches_played": 0,
"kills_per_round": 0,
"headshot_percent": 0,
"kill_death_ratio": 0,
"max_kills_in_map": 0,
"assists_per_round": 0,
"team_abbreviation": "<string>",
"total_first_kills": 0,
"total_first_deaths": 0,
"average_combat_score": 0,
"max_kills_match_path": "<string>",
"first_kills_per_round": 0,
"clutch_success_percent": 0,
"first_deaths_per_round": 0,
"first_kill_death_ratio": 0,
"additional_agents_count": 0,
"average_damage_per_round": 0
}
],
"to_date": "<string>",
"from_date": "<string>",
"time_period": "<string>",
"pages_fetched": 0,
"minimum_rounds": 0,
"players_returned": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/da6a839b-e2b1-4f41-818e-97511441d3c3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "da6a839b-e2b1-4f41-818e-97511441d3c3",
"variables": {
"time_period": "60d",
"region": "all",
"agent": "all",
"tier": "vct",
"minimum_rounds": 100,
"limit": 100,
"from_date": "",
"to_date": ""
}
}'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="da6a839b-e2b1-4f41-818e-97511441d3c3") — the "list_player_statistics" function, which returns the VLR.gg player leaderboard from https://vlr.gg with all performance metrics, agent usage, player paths, and filters for period, region, agent, and tier.. It takes time_period (str), region (str), agent (str), tier (str), minimum_rounds (int), limit (int), from_date (str), to_date (str). Return the result as structured JSON.