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

# Get page

> Returns a single page with its published markdown body, attached sources,
skills, and version info.

Use `?include=draft` to also return the current draft body
(`draft.title` and `draft.content`).




## OpenAPI

````yaml /api-reference/openapi.yaml get /knowledge-hub/pages/{page_id}
openapi: 3.0.3
info:
  title: Exec API
  version: '1.0'
  description: >
    REST API for programmatic access to your Exec workspace.


    Use the Exec API to read workspace data, list members, retrieve group
    information,

    and create interactive scenario creation sessions.


    ## Authentication

    All requests require a valid API key passed in the Authorization header:

    ```

    Authorization: Bearer exec_live_...

    ```


    Create API keys in your workspace settings under **Settings > API**.
servers:
  - url: https://api.exec.com/rest/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /knowledge-hub/pages/{page_id}:
    get:
      tags:
        - Knowledge Hub - Pages
      summary: Get page
      description: >
        Returns a single page with its published markdown body, attached
        sources,

        skills, and version info.


        Use `?include=draft` to also return the current draft body

        (`draft.title` and `draft.content`).
      operationId: getKnowledgeHubPage
      parameters:
        - name: page_id
          in: path
          required: true
          description: The page's unique identifier (UUID)
          schema:
            type: string
        - name: include
          in: query
          description: |
            Comma-separated list of optional sections to include.
            Available values: `draft` (the current draft title and body).
          schema:
            type: string
            example: draft
      responses:
        '200':
          description: Page detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KnowledgeHubPageDetail'
              example:
                id: p1a2b3c4d5e6
                title: Pricing objection guide
                status: published
                visibility: workspace
                owner:
                  id: u1a2b3c4d5e6
                  email: jane@acme.com
                  first_name: Jane
                  last_name: Smith
                folders:
                  - id: f1a2b3c4d5e6
                    name: Sales
                    emoji: 💼
                skills:
                  - id: sk1a2b3c4d5e
                    name: Objection handling
                source_count: 1
                version: 4
                cover: ''
                published_at: '2026-06-01T12:00:00Z'
                created_at: '2026-05-01T09:00:00Z'
                updated_at: '2026-06-10T15:30:00Z'
                content: |-
                  ## Handling pricing objections

                  Lead with value before discussing discounts…
                sources:
                  - id: s1a2b3c4d5e6
                    title: Q2 pricing deck.pdf
                    source_type: upload
                    status: ready
                    content_format: plain_text
                    token_count: 5234
                    has_images: false
                    external_url: null
                    summary: Quarterly pricing and packaging overview.
                    cover: ''
                    folders:
                      - id: f9a8b7c6d5e4
                        name: File Attachments
                        emoji: 📎
                    created_by:
                      id: u1a2b3c4d5e6
                      email: jane@acme.com
                      first_name: Jane
                      last_name: Smith
                    created_at: '2026-05-01T09:00:00Z'
                    updated_at: '2026-05-01T09:05:00Z'
                    processed_at: '2026-05-01T09:05:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    KnowledgeHubPageDetail:
      description: >-
        A single page with its published body, attached sources, and
        (optionally) its draft.
      allOf:
        - $ref: '#/components/schemas/KnowledgeHubPage'
        - type: object
          properties:
            content:
              type: string
              nullable: true
              description: Markdown body of the published version (null if unpublished)
            sources:
              type: array
              description: Sources attached to the page
              items:
                $ref: '#/components/schemas/KnowledgeHubSource'
            draft:
              $ref: '#/components/schemas/KnowledgeHubPageDraft'
              nullable: true
              description: >-
                Current draft (only included when requested via
                `?include=draft`)
    KnowledgeHubPage:
      type: object
      description: >-
        A Knowledge Hub page. List responses return this metadata-only shape (no
        body).
      properties:
        id:
          type: string
          description: Unique page identifier (UUID)
        title:
          type: string
          description: Page title
        status:
          type: string
          enum:
            - draft
            - published
            - archived
          description: Current page status
        visibility:
          type: string
          enum:
            - private
            - workspace
            - global
          description: Visibility scope of the page
        owner:
          $ref: '#/components/schemas/User'
          nullable: true
          description: User who owns the page
        folders:
          type: array
          description: Folders the page belongs to
          items:
            $ref: '#/components/schemas/KnowledgeHubFolderRef'
        skills:
          type: array
          description: Skills associated with the page
          items:
            $ref: '#/components/schemas/KnowledgeHubSkillRef'
        source_count:
          type: integer
          description: Number of sources attached to the page
        version:
          type: integer
          nullable: true
          description: Version number of the published version, or null if never published
        cover:
          type: string
          description: Cover image reference (empty string if none)
        published_at:
          type: string
          format: date-time
          nullable: true
          description: When the page was last published
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    KnowledgeHubSource:
      type: object
      description: >-
        A Knowledge Hub source — an uploaded file or ingested URL whose text is
        extracted and indexed.
      properties:
        id:
          type: string
          description: Unique source identifier (UUID)
        title:
          type: string
          description: Source title
        source_type:
          type: string
          enum:
            - upload
            - url
            - notion
            - google_drive
            - guru
            - page
            - integration
          description: Where the source came from
        status:
          type: string
          enum:
            - pending
            - processing
            - ready
            - failed
          description: Text-extraction status
        content_format:
          type: string
          nullable: true
          enum:
            - markdown
            - plain_text
            - image
            - video
          description: Format of the extracted content
        token_count:
          type: integer
          nullable: true
          description: Number of tokens in the extracted text
        has_images:
          type: boolean
          description: Whether the source contains images
        external_url:
          type: string
          nullable: true
          description: >-
            Original URL for url/notion/guru/google_drive sources (null
            otherwise)
        summary:
          type: string
          nullable: true
          description: AI-generated summary of the source
        cover:
          type: string
          description: Cover image reference (empty string if none)
        folders:
          type: array
          description: Folders the source belongs to
          items:
            $ref: '#/components/schemas/KnowledgeHubFolderRef'
        created_by:
          $ref: '#/components/schemas/User'
          nullable: true
          description: User who added the source
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        processed_at:
          type: string
          format: date-time
          nullable: true
          description: When extraction finished
        content:
          type: string
          nullable: true
          description: Extracted text (only included when requested via `?include=content`)
    KnowledgeHubPageDraft:
      type: object
      description: The unpublished draft of a page.
      properties:
        title:
          type: string
          description: Draft title
        content:
          type: string
          nullable: true
          description: Markdown body of the draft
    ValidationErrorDetail:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
              description: Error category (e.g., "invalid_request")
            code:
              type: string
              description: Specific error code (e.g., "user_not_found")
            message:
              type: string
              description: Human-readable error message
    User:
      type: object
      properties:
        id:
          type: string
          description: Unique user identifier
        email:
          type: string
          format: email
          description: User's email address
        first_name:
          type: string
          description: User's first name
        last_name:
          type: string
          description: User's last name
    KnowledgeHubFolderRef:
      type: object
      description: A compact folder reference embedded in pages and sources.
      properties:
        id:
          type: string
          description: Unique folder identifier (UUID)
        name:
          type: string
          description: Folder name
        emoji:
          type: string
          nullable: true
          description: Emoji icon shown next to the folder
    KnowledgeHubSkillRef:
      type: object
      description: A compact skill reference embedded in pages.
      properties:
        id:
          type: string
          description: Unique skill identifier (UUID)
        name:
          type: string
          description: Skill name
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationErrorDetail'
          example:
            error:
              type: authentication_error
              code: invalid_api_key
              message: Invalid or inactive API key
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationErrorDetail'
          example:
            error:
              type: not_found
              message: 'Scenario not found: abc123'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |
        API key created in Settings > API.

        Format: `exec_live_` followed by 40 alphanumeric characters.

````