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

# Get Folder Documents



## OpenAPI

````yaml GET /v1/folders/{id}/documents
openapi: 3.0.3
info:
  title: RayRift Customer API
  description: Public-facing API for RayRift
  version: 1.0.0
servers:
  - url: http://localhost:3000
security:
  - apiKey: []
paths:
  /v1/folders/{id}/documents:
    get:
      parameters:
        - schema:
            type: string
          in: path
          name: id
          required: true
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: Authorization
      in: header
      description: API Key (sk_...)

````