Marketplace
No threads yet
Live

search_players_by_personaname

opendota.com

Searches https://opendota.com for players by personaname and returns matching account IDs, avatars, display names, last-match timestamps, and relevance scores.

Parameters1
Runs13
Updated10d ago
Degraded13 runs · 69.2% 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 search_players_by_personaname?

Searches https://opendota.com for players by personaname and returns matching account IDs, avatars, display names, last-match timestamps, and relevance scores. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass personaname and get the result back without maintaining a scraper.

Response

{
  "players": [
    {
      "avatar": "<string>",
      "account_id": 0,
      "display_name": "<string>",
      "last_match_time": "<string>",
      "relevance_score": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/01d37c67-240a-4c9f-b04e-9c9ab3a40c64/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "01d37c67-240a-4c9f-b04e-9c9ab3a40c64",
    "variables": {
        "personaname": "Dendi"
    }
}'

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="01d37c67-240a-4c9f-b04e-9c9ab3a40c64") — the "search_players_by_personaname" function, which searches https://opendota.com for players by personaname and returns matching account IDs, avatars, display names, last-match timestamps, and relevance scores..

It takes personaname (str). Return the result as structured JSON.