> ## Documentation Index
> Fetch the complete documentation index at: https://docs.elestrals.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List creatures.

> Cursor-paginated list of creatures. Default sort is `name` ascending.




## OpenAPI

````yaml /openapi.yaml get /v1/creatures
openapi: 3.1.0
info:
  title: Elestrals TCG API
  summary: Public read-only API for Elestrals TCG card data.
  description: >
    Semi-public REST API exposing Elestrals TCG card data to approved
    developers.

    Access is gated by application and controlled by per-key rate limits.


    This file is the source of truth for the API's public contract. Code and
    spec

    stay in sync via the CI consistency check (see `scripts/check-openapi.mjs`).
  version: 1.0.0
  contact:
    name: Elestrals Developer Support
    url: https://docs.elestrals.com
  license:
    name: Proprietary
    identifier: LicenseRef-Elestrals-Developer-Agreement
servers:
  - url: https://api.elestrals.com
    description: Production
  - url: http://127.0.0.1:8787
    description: Local wrangler dev
security:
  - bearerAuth: []
tags:
  - name: Meta
    description: Service metadata endpoints.
  - name: Series
    description: Groupings of sets (First Edition, Kickstarter, Organized Play, etc.).
  - name: Sets
    description: Product sets (booster, starter deck, specialty).
  - name: Creatures
    description: The master creature lineage for Elestrals cards.
  - name: Cards
    description: Game entities — the cards as gameplay pieces (stats, effects, legality).
  - name: Printings
    description: Physical printings — a specific printed card in a set.
paths:
  /v1/creatures:
    get:
      tags:
        - Creatures
      summary: List creatures.
      description: |
        Cursor-paginated list of creatures. Default sort is `name` ascending.
      operationId: listCreatures
      parameters:
        - $ref: '#/components/parameters/LimitQuery'
        - $ref: '#/components/parameters/CursorQuery'
        - name: sort
          in: query
          schema:
            type: string
            enum:
              - name
              - '-name'
              - list_order
              - '-list_order'
              - constellation_number
              - '-constellation_number'
              - updated_at
              - '-updated_at'
            default: name
          description: Sort field. Prefix with `-` for descending.
        - name: name
          in: query
          schema:
            type: string
          description: Case-insensitive prefix match on creature name.
        - name: class
          in: query
          style: form
          explode: true
          schema:
            type: array
            items:
              $ref: '#/components/schemas/Class'
          description: Multi-value class filter. Repeat or comma-separate values.
        - name: element
          in: query
          style: form
          explode: true
          schema:
            type: array
            items:
              $ref: '#/components/schemas/ElementToken'
          description: Matches if the creature has any of the listed elements.
        - name: constellation_number
          in: query
          schema:
            type: string
          description: Exact-match filter on constellation_number.
        - name: updated_since
          in: query
          schema:
            type: string
            format: date-time
          description: Only return creatures updated strictly after this instant.
      responses:
        '200':
          description: Paginated list of creatures.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatureListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    LimitQuery:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 50
      description: Page size, max 250.
    CursorQuery:
      name: cursor
      in: query
      schema:
        type: string
      description: >-
        Opaque pagination cursor from a previous response's
        `pagination.next_cursor`.
  schemas:
    Class:
      type: string
      enum:
        - spirit
        - elestral
        - rune_divine
        - rune_artifact
        - rune_stadium
        - rune_invoke
        - rune_counter
    ElementToken:
      type: string
      enum:
        - earth
        - fire
        - water
        - thunder
        - wind
        - frost
        - solar
        - lunar
        - omni
    CreatureListResponse:
      type: object
      required:
        - data
        - pagination
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Creature'
        pagination:
          $ref: '#/components/schemas/Pagination'
        meta:
          $ref: '#/components/schemas/Meta'
    Creature:
      type: object
      required:
        - id
        - name
        - class
        - elements
        - blurb
        - constellation_number
        - element_number
        - level_number
        - images
        - updated_at
      properties:
        id:
          type: string
          example: el-159
        name:
          type: string
          example: Waspivy
        class:
          $ref: '#/components/schemas/Class'
        elements:
          type: array
          items:
            $ref: '#/components/schemas/ElementToken'
        blurb:
          type:
            - string
            - 'null'
          maxLength: 400
        constellation_number:
          type: string
          example: '17'
        element_number:
          type: string
          example: '02'
        level_number:
          type: string
          example: '03'
        images:
          $ref: '#/components/schemas/CreatureImages'
        updated_at:
          type: string
          format: date-time
    Pagination:
      type: object
      required:
        - next_cursor
        - has_more
      properties:
        next_cursor:
          type:
            - string
            - 'null'
          description: Opaque cursor. Pass as `?cursor=` to fetch the next page.
        has_more:
          type: boolean
    Meta:
      type: object
      required:
        - request_id
        - cached
        - attribution_required
      properties:
        request_id:
          type: string
          example: req_0123456789abcdef
        cached:
          type: boolean
        attribution_required:
          type: boolean
          const: true
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              enum:
                - not_found
                - bad_request
                - invalid_cursor
                - unauthorized
                - forbidden
                - rate_limit_exceeded
                - quota_exceeded
                - internal_error
                - service_unavailable
            message:
              type: string
            request_id:
              type: string
            docs_url:
              type: string
              format: uri
    CreatureImages:
      type: object
      required:
        - render_thumbnail_url
      properties:
        render_thumbnail_url:
          type: string
          format: uri
  responses:
    BadRequest:
      description: Request validation failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: elestrals_live_<32char>
      description: >
        API key supplied as `Authorization: Bearer <key>`. Keys are minted in
        the

        developer portal. Rejected in query strings. See the Authentication
        guide.

````