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

# Download file by uuid. This is meant as a fallback for direct API access from backend to backend.

> Please use the temporary URL endpoint instead to get a public link.
This endpoint does not support streaming / seeking.




## OpenAPI

````yaml /openapi/chat-client.yaml get /files/{uuid}
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /files/{uuid}:
    get:
      tags:
        - files
      summary: >-
        Download file by uuid. This is meant as a fallback for direct API access
        from backend to backend.
      description: |
        Please use the temporary URL endpoint instead to get a public link.
        This endpoint does not support streaming / seeking.
      parameters:
        - in: path
          name: uuid
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Success
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````