Discover/Dofusroom API
live

Dofusroom APIdofusroom.com

Access 3,200+ Dofus equipment items via 6 endpoints. Query stats, crafting recipes, set membership, and category counts by level, name, or category.

Endpoint health
verified 2d ago
get_item_details
get_category_counts
list_equipment_with_recipes
get_item_recipe
search_items
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Dofusroom API?

The Dofusroom API provides structured access to Dofus game equipment data across 6 endpoints, covering over 3,200 items. Use list_equipment to page through gear sorted by level, get_item_details to retrieve full stat blocks and set associations, or get_item_recipe to pull crafting resource requirements for any item. Level filters, name search, and category filtering are available across most endpoints.

Try it
Filter by item name (partial match)
Number of items to return (max ~50)
Pagination offset
Item category to list
Maximum level filter (1-200)
Minimum level filter (1-200)
api.parse.bot/scraper/cdd857b5-cf43-4a51-837d-2df7e2934b53/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cdd857b5-cf43-4a51-837d-2df7e2934b53/list_equipment?limit=5&offset=0&category=equipements&max_level=200&min_level=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dofusroom-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.dofusroom_encyclopedia_api import DofusRoom, ItemSummary, Item, Category, ItemWithRecipe

client = DofusRoom()

# Search for items by name
results = client.itemsummaries.search(query="Psychopump", category=Category.EQUIPEMENTS)
for summary in results:
    print(summary.name, summary.level, summary.type)

# Get full details for the first result
detail = summary.details()
print(detail.name, detail.real_type, detail.level)
for stat_key, stat_value in detail.stats.items():
    print(stat_key, stat_value)

# Get recipe for the item
recipe = detail.recipe.get()
print(recipe.has_recipe, recipe.item_name)
for resource in recipe.resources:
    print(resource.name, resource.quantity)

# List equipment with recipes included
crafted_items = client.itemwithrecipes.list(category=Category.ARMES, min_level="190", max_level="200")
for item in crafted_items:
    print(item.name, item.level, item.set_name)
    for res in item.resources:
        print(res.name, res.quantity, res.image_url)

# Get category counts
counts = client.categorycountses.get()
print(counts.counts["equipements"], counts.counts["armes"])
All endpoints · 6 totalmissing one? ·

List equipment items with pagination and optional filters. Returns item IDs, names, types, levels, and set information. Items are sorted by level descending. Supports offset-based pagination via the offset param.

Input
ParamTypeDescription
namestringFilter by item name (partial match)
limitintegerNumber of items to return (max ~50)
offsetintegerPagination offset
categorystringItem category to list
max_levelstringMaximum level filter (1-200)
min_levelstringMinimum level filter (1-200)
Response
{
  "type": "object",
  "fields": {
    "count": "integer - number of items returned",
    "items": "array of item summary objects with id, name, type, level, set_name, set_id",
    "limit": "integer - limit used",
    "offset": "integer - pagination offset used",
    "category": "string - the category queried"
  },
  "sample": {
    "data": {
      "count": 5,
      "items": [
        {
          "id": 4581,
          "name": "Potbellion Collar",
          "type": "Amulet",
          "level": 200,
          "set_id": 624,
          "set_name": "Armarines Set"
        }
      ],
      "limit": 5,
      "offset": 0,
      "category": "equipements"
    },
    "status": "success"
  }
}

About the Dofusroom API

Equipment Browsing and Search

The list_equipment endpoint returns paginated item summaries — id, name, type, level, set_name, and set_id — sorted by level descending. Narrow results using min_level and max_level (both accept 1–200), a partial name string, or a category slug. Pagination is offset-based via the offset parameter with a per-request cap of roughly 50 items. The search_items endpoint targets the same fields but is optimized for name lookups with partial matching, and also accepts the same level and category filters.

Item Details and Stats

get_item_details accepts an item_id from any listing endpoint and returns the complete stat block for that item: a stats object mapping stat keys to human-readable descriptions, a caracs array of characteristics, equipment conditions as an array of strings, the localized real_type, and a set object containing setId, setName, and ankamaSetId when the item belongs to a set. Items not in a set return an empty array for set.

Crafting Recipes

get_item_recipe returns the crafting recipe for a given item ID. The response includes a resources array of objects with name, quantity, and image_url for each ingredient, plus a has_recipe boolean. Items with no recipe return has_recipe: false and an empty resources array. The list_equipment_with_recipes endpoint combines a listing query and per-item recipe lookups in a single call; keep the limit parameter small (the default is 10) to stay within response time budgets.

Category Inventory

get_category_counts requires no parameters and returns a counts object mapping every top-level category (equipements, armes, ressources, consommables, creatures, panoplies) and their subcategories to item count strings. This is useful for building category navigation or validating filter values before running heavier listing queries.

Reliability & maintenanceVerified

The Dofusroom API is a managed, monitored endpoint for dofusroom.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dofusroom.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official dofusroom.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a gear planner that filters equipment by level range using min_level and max_level and displays stat blocks from get_item_details.
  • Calculate total crafting materials for a full equipment set by batching get_item_recipe calls and summing quantity values across the resources arrays.
  • Populate a category browser showing item counts per subcategory using data from get_category_counts.
  • Implement an in-game item search tool using search_items with partial name matching and category filtering.
  • Display set bonus context by reading set_name and set_id fields from listing results and linking to set-level views.
  • Automate crafting cost estimation by combining recipe resource names and quantities with external price data for each ingredient.
  • Index all items across levels for offline search by paginating list_equipment with incrementing offset values.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Dofusroom have an official developer API?+
Dofusroom does not publish an official public developer API or documented developer portal. This Parse API provides structured programmatic access to the equipment database.
What does `get_item_details` return beyond basic stats?+
get_item_details returns the full stats object with human-readable descriptions keyed by stat type, a caracs array, an array of conditions strings that describe any equipment requirements, and a set object with setId, setName, and ankamaSetId when the item belongs to a named set. Items outside a set return an empty array for the set field.
Can I retrieve all items in a single request?+
list_equipment caps results at roughly 50 items per call and uses offset-based pagination. To retrieve all items in a category, increment the offset parameter across multiple requests. get_category_counts can tell you the total item count per category before you start paginating.
Does the API cover live market prices or auction house data for items?+
Not currently. The API covers item stats, crafting recipes, set membership, and category metadata — not in-game market prices or auction house listings. You can fork this API on Parse and revise it to add an endpoint targeting market price data if that surface becomes available.
Are monster drop sources included in recipe or item detail responses?+
Not currently. get_item_recipe lists crafting ingredients with name, quantity, and image URL, but does not include monster drop sources or loot tables for acquiring those ingredients. You can fork this API on Parse and revise it to add a drops endpoint covering that data.
Page content last updated . Spec covers 6 endpoints from dofusroom.com.
Related APIs in EntertainmentSee all →
dofus.com API
Access comprehensive Dofus 3.0 game data including detailed class information, current bug reports, daily Almanax rewards, and player rankings. Explore the full encyclopedia and community statistics to optimize your gameplay and stay updated on game status.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
playerok.com API
Search and browse in-game items, accounts, and gaming services on Playerok's gaming marketplace. Access detailed product listings, game categories, and featured items. Filter by game or category to retrieve available offerings.
howbazaar.gg API
Query items, skills, merchants, and monsters from the How Bazaar game database. Look up detailed information about in-game equipment, abilities, NPCs, and enemy encounters, with optional filters by hero, tier, size, and tag.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
warframe.wiki API
Search for Warframe items and weapons to view their stats, crafting requirements, and mod information, while staying updated on current in-game events and patch notes. Get detailed information about gear, resources, and game updates all from one convenient source.
wowhead.com API
Access comprehensive World of Warcraft game data including items, NPCs, spells, and quests, plus stay updated with the latest WoW news and in-game events. Search the complete Wowhead database and read individual news articles to keep informed about current happenings in the game.
poedb.tw API
Search and retrieve comprehensive Path of Exile game data including items, gems, leagues, and game mechanics like bleeding effects across both PoE 1 and PoE 2. Get detailed information about specific items and categories, or browse current league information to stay updated on the latest game content.