DarkerDB

A community database and API for Dark and Darker.

The DarkerDB API exposes Dark and Darker game data — items, classes, perks, spells, skills, monsters, dungeons, maps, loot tables, quests, quest chapters, rewards, religions, emotes, merchants, shops, merchant stock, market activity, server population, leaderboards, and trade chat — through a versioned REST API at https://api.darkerdb.com.

The static game-data side is patch-versioned. Every endpoint in that group is patch-aware — see Patches for the time-travel parameters.

Versioned-catalog endpoints (quests, perks, classes, spells, skills, ...) also accept two enrichment query parameters:

  • ?embed=field1,field2 — inline-expand id-ref fields into full entity rows (e.g. ?embed=quest_reward,quest_contents on a quest).
  • ?locale=en|ko|ja|... — resolve Text_* localization keys to their translated strings. Default is the raw key.

Quick start

curl https://api.darkerdb.com/v2/items?limit=5

Or try any endpoint inline — every doc page below has a Try it widget that calls the API live with the parameters you choose.

Versions

The current version is v2. The legacy v1 API runs in parallel during the migration window; new integrations should target v2.

VersionBase URLStatus
v2https://api.darkerdb.com/v2active
v1https://api.darkerdb.com/v1legacy — frozen, accepted until DNS cutover

See Versioning & migration for the v1 → v2 mapping.