Live
list_events
vlr.ggReturns current, upcoming, and recent completed Valorant events from https://vlr.gg with IDs, statuses, prize pools, dates, regions, icons, and detail paths.
Parameters1
Runs4
Updated1h ago
Operational4 runs · 100% 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 list_events?
Returns current, upcoming, and recent completed Valorant events from https://vlr.gg with IDs, statuses, prize pools, dates, regions, icons, and detail paths. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"events": [
{
"id": 0,
"name": "<string>",
"dates": "<string>",
"status": "<string>",
"icon_url": "<string>",
"prize_pool": "<string>",
"detail_path": "<string>",
"region_code": "<string>"
}
],
"has_next": true,
"max_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0e584dc5-6263-4f5e-a90d-3eb2462cf2cb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0e584dc5-6263-4f5e-a90d-3eb2462cf2cb",
"variables": {
"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="0e584dc5-6263-4f5e-a90d-3eb2462cf2cb") — the "list_events" function, which returns current, upcoming, and recent completed Valorant events from https://vlr.gg with IDs, statuses, prize pools, dates, regions, icons, and detail paths.. It takes page (int). Return the result as structured JSON.