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

# Get Document

> Get the document



## OpenAPI

````yaml GET /documents/{id}
openapi: 3.1.0
info:
  title: HeyPal API
  version: '1.0'
  description: >-
    The HeyPal API makes it easy to add A.I. powered semantic-search & other
    A.I. functionality to your product & content.
servers:
  - url: https://api.pal.ai/v1
security:
  - API Key: []
paths:
  /documents/{id}:
    parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
        description: The Document ID you're interacting with.
    get:
      tags: []
      summary: Get Document
      description: Get the document
      operationId: get-document-by-id
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses: {}
components: {}

````