Spawners

GET /v2/spawners
GET /v2/spawners/{id}

Where monsters, treasures, and props are placed on dungeon maps. 516 spawners split evenly across the three roles.

List

curl 'https://api.darkerdb.com/v2/spawners?spawner_type=monster&limit=10'

Filters

NameOpDescription
spawner_typeexactmonster / treasure / props / empty
monster_idexactid.monster.* — find all spawners that spawn a given monster
loot_drop_group_idexactid.loot_drop_group.* — reverse lookup for loot tables
id_likesubstring
sort, limit, cursorstandard

Row shape

{
   "id":                  "id.spawner.monster_demon_executioner",
   "archetype":           "id.spawner.monster_demon_executioner",
   "spawner_type":        "monster",
   "monster_id":          "id.monster.demon_executioner",
   "loot_drop_group_id":  null,
   "location":            {},
   "payload":             { /* full SpawnerItemArray entry list */ }
}

Get

curl 'https://api.darkerdb.com/v2/spawners/id.spawner.monster_demon_executioner'