> ## 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 Pages

> Get all pages



## OpenAPI

````yaml GET /v1/documentation/pages
openapi: 3.0.0
info:
  title: Poozle
  description: The poozle API description
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/documentation/pages:
    get:
      tags:
        - Documentation
      description: Get all pages
      operationId: PageController_getPages
      parameters:
        - name: cursor
          required: false
          in: query
          description: >-
            Cursor to start from. You can find cursors for next & previous pages
            in the meta.cursors property of the response.
          schema:
            type: string
        - name: raw
          required: false
          in: query
          description: Include raw response. When you want more data from the source
          schema:
            type: boolean
        - name: title
          required: false
          in: query
          description: Filter by title
          schema:
            type: array
            items:
              type: string
        - name: sort
          required: false
          in: query
          description: You can the use values from enum to sort the respose
          schema:
            enum:
              - created_at
              - updated_at
            type: string
        - name: direction
          required: false
          in: query
          description: You can pass asc/desc
          schema:
            enum:
              - asc
              - desc
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagesResponse'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiException'
        '401':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiException'
components:
  schemas:
    PagesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Page'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
        - data
        - meta
    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
    Meta:
      type: object
      properties:
        limit:
          type: number
        cursors:
          type: object
          properties:
            before:
              type: string
            current:
              type: string
            next:
              type: string
      required:
        - limit
        - cursors

````