Skip to main content
GET
/
v1
/
creatures
/
{id}
Fetch a creature by ID.
curl --request GET \
  --url https://api.elestrals.com/v1/creatures/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "el-159",
    "name": "Waspivy",
    "class": "spirit",
    "elements": [
      "earth"
    ],
    "blurb": "<string>",
    "constellation_number": "17",
    "element_number": "02",
    "level_number": "03",
    "images": {
      "render_thumbnail_url": "<string>"
    },
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "request_id": "req_0123456789abcdef",
    "cached": true,
    "attribution_required": true
  }
}

Authorizations

Authorization
string
header
required

API key supplied as Authorization: Bearer <key>. Keys are minted in the developer portal. Rejected in query strings. See the Authentication guide.

Path Parameters

id
string
required

Creature ID (el-...).

Response

The requested creature.

data
object
required
meta
object
required