Marketplace
No threads yet
Live

search_leaderboard_player

dofus.com

Looks up a DOFUS player by name on https://dofus.com by querying both the General and Achievement leaderboards. Returns combined rank, class, server, level, total XP, and achievement points for the first matching player or null.

Parameters3
Runs11
Updated8d ago
Degraded11 runs · 90.9% 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_leaderboard_player?

Looks up a DOFUS player by name on https://dofus.com by querying both the General and Achievement leaderboards. Returns combined rank, class, server, level, total XP, and achievement points for the first matching player or null. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_name, server, lang and get the result back without maintaining a scraper.

Response

{
  "player": {
    "rank": 0,
    "level": 0,
    "total_xp": 0,
    "class_name": "<string>",
    "server_name": "<string>",
    "general_rank": 0,
    "character_name": "<string>",
    "breed_icon_code": "<string>",
    "achievement_rank": 0,
    "achievement_points": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/85ffa16a-1467-4dd5-91fc-072d45846b80/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "85ffa16a-1467-4dd5-91fc-072d45846b80",
    "variables": {
        "player_name": "Hepaty",
        "server": "",
        "lang": "en"
    }
}'

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="85ffa16a-1467-4dd5-91fc-072d45846b80") — the "search_leaderboard_player" function, which looks up a DOFUS player by name on https://dofus.com by querying both the General and Achievement leaderboards. Returns combined rank, class, server, level, total XP, and achievement points for the first matching player or null..

It takes player_name (str), server (str), lang (str). Return the result as structured JSON.