get_recent_pro_dota2_matches
opendota.comGets recent professional Dota 2 match records from https://opendota.com, ordered by match_id descending. Supports pagination with less_than_match_id and returns all non-empty source fields for each match.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_recent_pro_dota2_matches?
Gets recent professional Dota 2 match records from https://opendota.com, ordered by match_id descending. Supports pagination with less_than_match_id and returns all non-empty source fields for each match. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass less_than_match_id, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"matches": [
{}
],
"total_matches": 0,
"next_less_than_match_id": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ab53c946-775c-4377-881c-e8d5647841ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ab53c946-775c-4377-881c-e8d5647841ef",
"variables": {
"less_than_match_id": 0,
"limit": 100,
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ab53c946-775c-4377-881c-e8d5647841ef") — the "get_recent_pro_dota2_matches" function, which gets recent professional Dota 2 match records from https://opendota.com, ordered by match_id descending. Supports pagination with less_than_match_id and returns all non-empty source fields for each match.. It takes less_than_match_id (int), limit (int), timeout_seconds (int). Return the result as structured JSON.