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

# List Documents

> List documents for an assistant.

This endpoint retrieves a list of all documents that have been uploaded to a specific assistant's knowledge base.

### Path Parameters

* `assistant_id` (string, **required**): The unique identifier of the assistant whose documents you want to list.

### Response

The response is a JSON array of document objects, each containing details about a specific document.

```json Response theme={null}
[
  {
    "id": "doc_1234567890",
    "user_id": "user_12345",
    "organization_id": "org_67890",
    "assistant_id": "asst_a1b2c3d4e5f67890",
    "name": "product_faq.pdf",
    "status": "completed",
    "created_at": "2023-10-28T16:00:00Z",
    "updated_at": "2023-10-28T16:05:00Z"
  },
  {
    "id": "doc_abcdefghij",
    "user_id": "user_12345",
    "organization_id": "org_67890",
    "assistant_id": "asst_a1b2c3d4e5f67890",
    "name": "onboarding_guide.docx",
    "status": "completed",
    "created_at": "2023-10-29T10:00:00Z",
    "updated_at": "2023-10-29T10:02:00Z"
  }
]
```


## OpenAPI

````yaml GET /api/v1/assistants/{assistant_id}/documents
openapi: 3.1.0
info:
  title: Burki
  description: A system that uses AI to answer customer Calls.
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/assistants/{assistant_id}/documents:
    get:
      tags:
        - assistants
      summary: List Documents
      description: List documents for an assistant.
      operationId: list_documents_api_v1_assistants__assistant_id__documents_get
      parameters:
        - name: assistant_id
          in: path
          required: true
          schema:
            type: integer
            title: Assistant Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````