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

# Document Summarization [Coming Soon]

> <Warning>
🚧 This API is currently under development and will be available soon.
It will allow intelligent summarization of medical documents.
</Warning>




## OpenAPI

````yaml docs/en/openapi.yaml post /summaries
openapi: 3.1.0
info:
  title: DAAI - APIS
  version: 1.0.0
servers:
  - url: https://apim.doctorassistant.ai/api/sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Consultations
  - name: Exams
  - name: Summaries
paths:
  /summaries:
    post:
      tags:
        - Summaries
      summary: Document Summarization [Coming Soon]
      description: |
        <Warning>
        🚧 This API is currently under development and will be available soon.
        It will allow intelligent summarization of medical documents.
        </Warning>
      responses:
        '200':
          description: Under development
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: API under development
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-daai-api-key
      description: API key for authentication

````