Marketplace
No threads yet
Live

get_agent_pick_rates

vlr.gg

Returns every agent and its aggregate pick rate percentage for a specified event from https://vlr.gg.

Parameters1
Runs3
Updated1h ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_agent_pick_rates?

Returns every agent and its aggregate pick rate percentage for a specified event from https://vlr.gg. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass detail_path and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "agents": [
    {
      "image_url": "<string>",
      "agent_name": "<string>",
      "agent_slug": "<string>",
      "pick_rate_percent": 0
    }
  ],
  "event_name": "<string>",
  "agent_count": 0,
  "maps_played": 0,
  "event_detail_path": "<string>",
  "attack_round_win_rate_percent": 0,
  "defense_round_win_rate_percent": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f3b33147-df6b-478c-a492-c6bd09ba1c62/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f3b33147-df6b-478c-a492-c6bd09ba1c62",
    "variables": {
        "detail_path": "DEFAULT_EVENT_DETAIL_PATH"
    }
}'

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="f3b33147-df6b-478c-a492-c6bd09ba1c62") — the "get_agent_pick_rates" function, which returns every agent and its aggregate pick rate percentage for a specified event from https://vlr.gg..

It takes detail_path (str). Return the result as structured JSON.