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

# Get Paper Sections

> Returns all sections for a given paper, ordered by section number.



## OpenAPI

````yaml GET /papers/{id}/sections
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:
  /papers/{id}/sections:
    get:
      tags:
        - Papers
      summary: Get sections within a paper
      description: Returns all sections for a given paper, ordered by section number.
      operationId: getPaperSections
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: List of sections
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        paperId:
                          type: string
                        sectionId:
                          type: string
                        title:
                          type: string
                          nullable: true
                        globalId:
                          type: string
                        sortId:
                          type: string
                      required:
                        - id
                        - paperId
                        - sectionId
                        - title
                        - globalId
                        - sortId
                required:
                  - data
        '404':
          description: Paper not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  status:
                    type: integer
                  detail:
                    type: string
                required:
                  - type
                  - title
                  - status
                  - detail
        '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

````