Live
get_player_overview
api.tracker.ggReturns platform, account, privacy, playlist, season, and overview stat segments for an exact Riot ID from https://tracker.gg.
Parameters1
Runs9
Updated1d ago
Degraded9 runs · 66.6% 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 get_player_overview?
Returns platform, account, privacy, playlist, season, and overview stat segments for an exact Riot ID from https://tracker.gg. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass riot_id and get the result back without maintaining a scraper.
Response
{
"metadata": {},
"segments": [
{}
],
"userInfo": {},
"platformInfo": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/1cc44f5b-643b-4a21-85fd-564a0d2bf474/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1cc44f5b-643b-4a21-85fd-564a0d2bf474",
"variables": {
"riot_id": "stunna#2006"
}
}'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="1cc44f5b-643b-4a21-85fd-564a0d2bf474") — the "get_player_overview" function, which returns platform, account, privacy, playlist, season, and overview stat segments for an exact Riot ID from https://tracker.gg.. It takes riot_id (str). Return the result as structured JSON.