Faustian bargains

GET /v2/faustian_bargains
GET /v2/faustian_bargains/{id}

The Faustian Bargain system — temporary risk/reward modifiers a player can take during a dungeon run.

List

curl 'https://api.darkerdb.com/v2/faustian_bargains?tier=2&limit=10'

Filters

NameOpDescription
tierexactbargain tier integer
id_likesubstring
archetypeexactfamily slug
sort, limit, cursorstandard

Row shape

{
   "id":              "id.faustian_bargain.centaur_demon",
   "archetype":       "id.faustian_bargain.centaur_demon",
   "name":            "Centaur Demon's Bargain",
   "description":     "...",
   "icon":            { "hash": "...", "url": "...", "media_type": "image/png" },
   "tier":            2,
   "payload":         { /* abilities, effects, skills, overrides denormalized */ }
}

The payload field carries the full bargain definition. Companion docs (FaustianBargainAbility, FaustianBargainEffect, FaustianBargainSkill, FaustianBargainEffectOverride) are resolved into the payload at projection time so consumers don't need to chase references.