get_pro_players
opendota.comGets professional Dota 2 player records from https://opendota.com, including Steam profile fields, team affiliation, country, and last match timestamps. Returns all non-empty source fields for each player.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_pro_players?
Gets professional Dota 2 player records from https://opendota.com, including Steam profile fields, team affiliation, country, and last match timestamps. Returns all non-empty source fields for each player. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass max_players, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"players": [
{}
],
"total_players": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/54e94bc3-8af8-4bdc-9957-462c7a8940fd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "54e94bc3-8af8-4bdc-9957-462c7a8940fd",
"variables": {
"max_players": 0,
"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="54e94bc3-8af8-4bdc-9957-462c7a8940fd") — the "get_pro_players" function, which gets professional Dota 2 player records from https://opendota.com, including Steam profile fields, team affiliation, country, and last match timestamps. Returns all non-empty source fields for each player.. It takes max_players (int), timeout_seconds (int). Return the result as structured JSON.