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

# Get Document Status

> Get processing status of a document.

After uploading a document, you can use this endpoint to check its processing status. This is useful for determining when the document is fully processed and ready for use in RAG.

### Path Parameters

* `assistant_id` (string, **required**): The identifier of the assistant that owns the document.
* `document_id` (string, **required**): The identifier of the document whose status you want to check.

### Response

The response contains the document object, which includes the current `status`. The status will be one of `processing`, `completed`, or `failed`.

```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"
}
```


## OpenAPI

````yaml GET /api/v1/assistants/{assistant_id}/documents/{document_id}/status
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/{document_id}/status:
    get:
      tags:
        - assistants
      summary: Get Document Status
      description: Get processing status of a document.
      operationId: >-
        get_document_status_api_v1_assistants__assistant_id__documents__document_id__status_get
      parameters:
        - name: assistant_id
          in: path
          required: true
          schema:
            type: integer
            title: Assistant Id
        - name: document_id
          in: path
          required: true
          schema:
            type: integer
            title: Document 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

````