Chalice dungeons
Root and ritual chalice dungeon summaries (area, depth). There is no per-slug detail endpoint yet.
List chalice dungeons
GET /v1/bloodborne/chalice-dungeons?page=1&page_size=2
Supports pagination. Use slug from list rows to cross-reference chalice items elsewhere.
Try it
curl -s -H "X-API-Key: YOUR_API_KEY" "https://www.souls-api.com/v1/bloodborne/chalice-dungeons?page=1&page_size=2" Example response
200 OK
{
"data": [
{
"slug": "central-pthumerian-labyrinth",
"name": "Central Pthumerian Labyrinth",
"area": "pthumeru",
"depth": 2
},
{
"slug": "ailing-loran-labyrinth",
"name": "Ailing Loran Labyrinth",
"area": "loran",
"depth": 2
}
],
"meta": { "page": 1, "page_size": 2, "total": 11 }
}