Marketplace
No threads yet
Live

list_valorant_matches

vlr.gg

Returns upcoming matches or paginated completed results from https://vlr.gg with dates, teams, scores, status, statistics and VOD availability, event context, and detail paths.

Parameters2
Runs4
Updated53m 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 list_valorant_matches?

Returns upcoming matches or paginated completed results from https://vlr.gg with dates, teams, scores, status, statistics and VOD availability, event context, and detail paths. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass view, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "view": "<string>",
  "count": 0,
  "matches": [
    {}
  ],
  "has_next": true,
  "max_page": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f71a0ee4-0873-4e23-84f6-444d25f39c33/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f71a0ee4-0873-4e23-84f6-444d25f39c33",
    "variables": {
        "view": "upcoming",
        "page": 1
    }
}'

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="f71a0ee4-0873-4e23-84f6-444d25f39c33") — the "list_valorant_matches" function, which returns upcoming matches or paginated completed results from https://vlr.gg with dates, teams, scores, status, statistics and VOD availability, event context, and detail paths..

It takes view (str), page (int). Return the result as structured JSON.