All wiki pages are available as static JSON, for free, no key or authentication. Ideal for your tools, bots or sites. Data extracted from the Dofus Retro client. Please credit wiki.moon-bot.io and don't overload the server.
Endpoints
GET/api/monsters.jsonList of all monsters (id, name, level).
GET/api/monster/{id}.jsonA monster's details: stats per grade, resistances, location.
GET/api/items.jsonList of all items (id, name, type, level).
GET/api/item/{id}.jsonAn item's details: stats, recipe, type, level.
GET/api/search-index.jsonGlobal search index (name, url, category, icon).
Example — /api/monster/37.json (Craqueleur)
{
"id": 37,
"name": "Craqueleur",
"level_min": 1,
"level_max": 6,
"weakness": "Feu",
"grades": [
{
"grade": 1,
"level": 1,
"hp": 100,
"ap": 5,
"mp": 2,
"resist": {
"neutral": 0,
"earth": 25,
"fire": -50
}
}
]
}
CORS
JSON responses are served with Access-Control-Allow-Origin: *. 1471 monsters and 11716 items are exposed.
⚡
Building a Dofus Retro tool?MoonBot also exposes a 395-function Lua API to automate the game.
Try for free