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

# List Entities

> Browse the entity catalog (beings, places, orders, races, religions, concepts). Supports filtering by type and searching by name.



## OpenAPI

````yaml GET /entities
openapi: 3.1.0
info:
  title: Urantia Papers API
  version: 1.0.0
  description: >-
    A developer and AI-agent friendly API for the Urantia Papers. Provides
    full-text search, structured content access, and audio URLs for all 17,000+
    paragraphs across 197 papers.
servers:
  - url: https://api.urantia.dev
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
paths:
  /entities:
    get:
      tags:
        - Entities
      summary: List entities
      description: >-
        Browse the entity catalog (beings, places, orders, races, religions,
        concepts). Supports filtering by type and searching by name.
      operationId: listEntities
      parameters:
        - schema:
            type: integer
            nullable: true
            minimum: 0
            default: 0
          required: false
          name: page
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
          required: false
          name: limit
          in: query
        - schema:
            type: string
            enum:
              - being
              - place
              - order
              - race
              - religion
              - concept
          required: false
          name: type
          in: query
        - schema:
            type: string
            maxLength: 200
          required: false
          name: q
          in: query
        - schema:
            type: string
            enum:
              - eng
              - es
              - fr
              - pt
              - de
              - ko
            default: eng
          required: false
          name: lang
          in: query
      responses:
        '200':
          description: Paginated list of entities
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        type:
                          type: string
                          enum:
                            - being
                            - place
                            - order
                            - race
                            - religion
                            - concept
                        aliases:
                          type: array
                          nullable: true
                          items:
                            type: string
                        description:
                          type: string
                          nullable: true
                        seeAlso:
                          type: array
                          nullable: true
                          items:
                            type: string
                        citationCount:
                          type: integer
                        language:
                          type: string
                      required:
                        - id
                        - name
                        - type
                        - aliases
                        - description
                        - seeAlso
                        - citationCount
                  meta:
                    type: object
                    properties:
                      page:
                        type: integer
                      limit:
                        type: integer
                      total:
                        type: integer
                      totalPages:
                        type: integer
                    required:
                      - page
                      - limit
                      - total
                      - totalPages
                required:
                  - data
                  - meta
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  status:
                    type: integer
                  detail:
                    type: string
                required:
                  - type
                  - title
                  - status
                  - detail

````