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

# Get Page

> Get a single page



## OpenAPI

````yaml GET /v1/documentation/pages/{page_id}
openapi: 3.0.0
info:
  title: Poozle
  description: The poozle API description
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/documentation/pages/{page_id}:
    get:
      tags:
        - Documentation
      description: Get a single page
      operationId: PageController_getPageeId
      parameters:
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: page_id
          required: true
          in: path
          description: A unique identifier for the page
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageResponse'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiException'
        '401':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiException'
components:
  schemas:
    PageResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Page'
      required:
        - data
    ApiException:
      type: object
      properties:
        statusCode:
          type: number
        message:
          type: string
        status:
          type: string
        error:
          type: string
        errors:
          type: object
        timestamp:
          type: string
        path:
          type: string
    Page:
      type: object
      properties:
        id:
          type: string
          description: A unique identifier for the page
        parent_id:
          type: string
          description: Page/Block id of the parent
        title:
          type: string
          description: Title of the page
        created_by:
          type: string
          description: The account associated with the page
        created_at:
          type: string
          description: Time at which the page is created
        updated_at:
          type: string
          description: Last updated time
        updated_by:
          type: string
          description: The account associated with the last update
      required:
        - id
        - parent_id
        - title
        - created_by
        - created_at
        - updated_at
        - updated_by

````