Marketplace
No threads yet
Live

get_achievement_leaderboard_page

dofus.com

Returns one page of global achievement leaderboard players from the DOFUS community rankings on https://dofus.com, with up to 100 records ordered by achievement points.

Parameters2
Runs10
Updated8d ago
Operational10 runs · 100% 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_achievement_leaderboard_page?

Returns one page of global achievement leaderboard players from the DOFUS community rankings on https://dofus.com, with up to 100 records ordered by achievement points. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, lang and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "players": [
    {
      "rank": 0,
      "level": 0,
      "class_name": "<string>",
      "server_name": "<string>",
      "character_name": "<string>",
      "breed_icon_code": "<string>",
      "achievement_points": 0
    }
  ],
  "source_url": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9df32817-bce7-4c39-8bd4-d1f8a749e169/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9df32817-bce7-4c39-8bd4-d1f8a749e169",
    "variables": {
        "page": 1,
        "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="9df32817-bce7-4c39-8bd4-d1f8a749e169") — the "get_achievement_leaderboard_page" function, which returns one page of global achievement leaderboard players from the DOFUS community rankings on https://dofus.com, with up to 100 records ordered by achievement points..

It takes page (int), lang (str). Return the result as structured JSON.