Discover/Damijing API
live

Damijing APIdb.damijing.com

Access World of Warcraft item data from db.damijing.com. Search equipment by class, quality, and name; retrieve stats, damage, DPS, and drop sources by item ID.

This API takes change requests — .
Endpoint health
verified 1h ago
search_items
get_item_detail
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Damijing API?

The Damijing database API provides access to World of Warcraft equipment data across 2 endpoints, returning item stats, quality tiers, damage ranges, DPS, binding type, and drop source information in Chinese. The search_items endpoint lets you filter by item category, quality, and name keyword with paginated results, while get_item_detail returns a full stat block for any specific item ID.

This call costs1 credit / call— charged only on success
Try it
Item name search keyword (Chinese). Filters items whose name contains this string. Requires class_id to be set.
Page number for pagination (1-based).
Quality filter. Values observed: 普通 (Common), 优秀 (Uncommon), 精良 (Rare), 史诗 (Epic), 传说 (Legendary).
Item class ID to filter by category. Common values: 2 (weapons), 4 (armor). When provided, scopes the search and enables name filtering.
Number of items per page (1-50).
api.parse.bot/scraper/800b3a87-ede8-4ee6-87bd-3bcdcabfdbb0/<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/800b3a87-ede8-4ee6-87bd-3bcdcabfdbb0/search_items?quality=%E5%8F%B2%E8%AF%97&class_id=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Search game equipment items with optional filters for item type, name, and quality. Returns paginated results ordered by item level descending. Requires class_id to scope the search to a specific item category (weapons, armor, etc). Without class_id, returns recently added items across all categories.

Input
ParamTypeDescription
namestringItem name search keyword (Chinese). Filters items whose name contains this string. Requires class_id to be set.
pageintegerPage number for pagination (1-based).
qualitystringQuality filter. Values observed: 普通 (Common), 优秀 (Uncommon), 精良 (Rare), 史诗 (Epic), 传说 (Legendary).
class_idstringItem class ID to filter by category. Common values: 2 (weapons), 4 (armor). When provided, scopes the search and enables name filtering.
page_sizeintegerNumber of items per page (1-50).
Response
{
  "type": "object",
  "fields": {
    "page": "Current page number",
    "items": "Array of equipment items with id, name, class, subclass, slot, levels, quality, stats, icon, prices, and source info",
    "total": "Total number of matching items",
    "page_size": "Items per page"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "name": "烈毒角斗士的切碎者",
          "slot": "单手",
          "stats": "力量,耐力,爆击,全能",
          "item_id": 270828,
          "quality": "史诗",
          "icon_url": "https://static.damijing.com/wow/item/7736101",
          "buy_price": 0,
          "class_name": "武器",
          "item_level": 298,
          "sell_price": 0,
          "is_equippable": true,
          "subclass_name": "斧",
          "required_level": 90,
          "source_instance": null,
          "source_encounter": null,
          "crafted_by_profession": null
        }
      ],
      "total": 444,
      "page_size": 5
    },
    "status": "success"
  }
}

About the Damijing API

Searching Equipment

The search_items endpoint accepts up to five parameters: class_id (required to scope results — 2 for weapons, 4 for armor), name for a Chinese keyword filter (only active when class_id is set), quality using Chinese tier labels (普通, 优秀, 精良, 史诗, 传说), and page/page_size for pagination up to 50 items per page. Results are ordered by item level descending. Without class_id, the endpoint returns recently added items across all categories. Each result includes the item's id, name, class, subclass, slot, levels, quality, stats, icon, prices, and source information.

Item Detail

The get_item_detail endpoint takes a numeric item_id (obtainable from search_items results) and returns a full detail record: name, slot, binding, damage, dps, stats as an array of strings (e.g. +65 敏捷), durability, icon_url, and a url linking back to the item's page on db.damijing.com. Flavor text and drop source are also included where available.

Coverage and Language

All text fields — item names, stat strings, slot labels, and quality values — are returned in Chinese (Simplified). The database reflects World of Warcraft item data as catalogued by the Damijing community database. Quality filtering in search_items uses Chinese quality names directly, so queries must use the correct Chinese strings rather than numeric tier identifiers.

Reliability & maintenanceVerified

The Damijing API is a managed, monitored endpoint for db.damijing.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when db.damijing.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 db.damijing.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
1h ago
Latest check
2/2 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 WoW gear comparison tool using stats, damage, and dps fields from item detail
  • Filter Epic (史诗) or Legendary (传说) weapon drops by combining class_id=2 with the quality param
  • Populate a loot table database by paginating search_items across armor and weapon categories
  • Display item tooltips in a Chinese-language WoW companion app using name, slot, binding, and stats
  • Track recently added items to the Damijing database by calling search_items without class_id
  • Resolve item IDs from search results to full stat blocks for a gear-scoring spreadsheet or bot
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does db.damijing.com have an official developer API?+
Damijing does not publish a documented public developer API. This Parse API provides structured access to the equipment data the site exposes.
How does quality filtering work in search_items?+
Pass the quality parameter as a Chinese string: 普通 (Common), 优秀 (Uncommon), 精良 (Rare), 史诗 (Epic), or 传说 (Legendary). The filter is only meaningful when class_id is also provided; without it, the endpoint returns recently added items regardless of other filters.
Does get_item_detail return set bonus or socket information?+
Not currently. The detail endpoint covers stats, damage, DPS, slot, binding, durability, and drop source. Set bonus data and socket/gem slot details are not included in the current response shape. You can fork this API on Parse and revise it to add an endpoint that captures those fields.
Can I search items without knowing the class_id?+
Without class_id, search_items returns recently added items across all categories and ignores the name keyword filter. To search by name or filter by quality within a specific item type, class_id must be set — use 2 for weapons or 4 for armor.
Is player character data (such as gear equipped by a specific character) available?+
Not currently. The API covers item catalog data — search and item detail — not individual character profiles or equipped gear. You can fork this API on Parse and revise it to add a character lookup endpoint if that data is accessible on the site.
Page content last updated . Spec covers 2 endpoints from db.damijing.com.
Related APIs in EntertainmentSee all →
dofusroom.com API
Browse and search thousands of Dofus equipment pieces and weapons to find detailed stats, compare items by category, and discover crafting recipes with all required resources. Get instant access to comprehensive game equipment data covering over 3,200 items to optimize your gear and crafting strategies.
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.
bazaardb.gg API
Search and retrieve comprehensive data about The Bazaar game cards, including items, skills, merchants, trainers, monsters, and events with full details like tiers, attributes, enchantments, and tooltips. Quickly find the specific card information you need to optimize your gameplay strategy and deck building.
dpm.org.cn API
Search and explore the Palace Museum's vast collection of artifacts organized by category and dynasty, then view detailed information about specific items. Discover historical objects spanning different periods and classifications to learn about the museum's treasures.
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.
dlsite.com API
Browse and search DLsite's digital content library, view product details, rankings, and new releases, while managing your personal favorites and library if logged in. Access comprehensive information about games, software, and creative works all in one place.
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.