Marketplace
No threads yet
Live

get_dota2_upcoming_matches_by_tier

cyberscore.live

Returns upcoming professional Dota 2 matches filtered by tournament tier from https://cyberscore.live, including teams, tournament, ISO start time, best-of format, and all non-empty source record fields.

Parameters1
Runs12
Updated10d ago
Degraded12 runs · 91.6% 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_dota2_upcoming_matches_by_tier?

Returns upcoming professional Dota 2 matches filtered by tournament tier from https://cyberscore.live, including teams, tournament, ISO start time, best-of format, and all non-empty source record fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass tier and get the result back without maintaining a scraper.

Response

{
  "tier": 0,
  "count": 0,
  "matches": [
    {
      "start_time": "<string>",
      "source_fields": {},
      "best_of_format": "<string>",
      "dire_team_name": "<string>",
      "tournament_name": "<string>",
      "tournament_tier": 0,
      "radiant_team_name": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b5e7ffb3-daaa-415c-9138-a4eabb5d6bc0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b5e7ffb3-daaa-415c-9138-a4eabb5d6bc0",
    "variables": {
        "tier": 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="b5e7ffb3-daaa-415c-9138-a4eabb5d6bc0") — the "get_dota2_upcoming_matches_by_tier" function, which returns upcoming professional Dota 2 matches filtered by tournament tier from https://cyberscore.live, including teams, tournament, ISO start time, best-of format, and all non-empty source record fields..

It takes tier (int). Return the result as structured JSON.