Marketplace
No threads yet
Live

get_daily_competitive_matches

tracker.gg

Counts a player's competitive Valorant games on a UTC date from recent history at https://tracker.gg and returns every non-empty source field for matching records.

Parameters3
Runs4
Updated1d ago
Operational4 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_daily_competitive_matches?

Counts a player's competitive Valorant games on a UTC date from recent history at https://tracker.gg and returns every non-empty source field for matching records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass riot_id, target_date, platform and get the result back without maintaining a scraper.

Response

{
  "matches": [
    {}
  ],
  "riot_id": "<string>",
  "platform": "<string>",
  "timezone": "<string>",
  "target_date": "<string>",
  "games_played": 0,
  "matches_scanned": 0,
  "limited_to_recent_history": true,
  "available_history_end_date": "<string>",
  "available_history_start_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6f90ffc6-5fdf-472b-b180-9a6ba1952509/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6f90ffc6-5fdf-472b-b180-9a6ba1952509",
    "variables": {
        "riot_id": "stunna#2006",
        "target_date": "",
        "platform": "pc"
    }
}'

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="6f90ffc6-5fdf-472b-b180-9a6ba1952509") — the "get_daily_competitive_matches" function, which counts a player's competitive Valorant games on a UTC date from recent history at https://tracker.gg and returns every non-empty source field for matching records..

It takes riot_id (str), target_date (str), platform (str). Return the result as structured JSON.