get_agent_insights
tracker.ggReturns global Valorant agent performance and act-filtered daily usage histograms from https://tracker.gg, including pick rates, win rates, K/D ratios, tiers and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_agent_insights?
Returns global Valorant agent performance and act-filtered daily usage histograms from https://tracker.gg, including pick rates, win rates, K/D ratios, tiers and all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass act_id and get the result back without maintaining a scraper.
Response
{
"act": {},
"agents": [
{}
],
"histogram": {},
"patch_version": "<string>",
"history_limited": true,
"available_histogram_end_date": "<string>",
"available_histogram_start_date": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/96a80aff-b823-4d72-bdcd-4486066f6b4f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "96a80aff-b823-4d72-bdcd-4486066f6b4f",
"variables": {
"act_id": "8102cd81-43a0-d0d7-bd59-47b8fe9bed1b"
}
}'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="96a80aff-b823-4d72-bdcd-4486066f6b4f") — the "get_agent_insights" function, which returns global Valorant agent performance and act-filtered daily usage histograms from https://tracker.gg, including pick rates, win rates, K/D ratios, tiers and all non-empty source fields.. It takes act_id (str). Return the result as structured JSON.