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

# Download a signed audit-export ZIP

> Accessed via a Laravel signed URL; records a one-shot PHI export-downloaded audit event on first access.



## OpenAPI

````yaml /openapi/v1.json get /audit/exports/{export}/download
openapi: 3.1.0
info:
  title: HASP AI API
  version: '2026-07-12'
  description: >-
    The HASP Public AI API is the regulated-AI substrate for healthcare and
    other

    regulated industries — identity, policy, audit, compliance, and PHI handling

    for AI inference, exposed via two surfaces:


    - **Native (`/v1/ai/*`)**: HASP-native chat with full event taxonomy, run
    lifecycle,
      and PHI metadata.
    - **Anthropic-compat (`/v1/messages`)**: Drop-in replacement for
    `@anthropic-ai/sdk` —
      change only `baseURL`. All Gateway compliance checks (BAA, credits, PHI policy) apply.

    All requests require an API key (`Authorization: Bearer
    hasp_api_live_<key>`). See

    [Authentication](https://docs.usehasp.com/ai-api/authentication) for key
    management.
servers:
  - url: https://api.usehasp.com/v1
    description: Production
security:
  - http: []
paths:
  /audit/exports/{export}/download:
    get:
      tags:
        - AuditExportDownload
      summary: Download a signed audit-export ZIP
      description: >-
        Accessed via a Laravel signed URL; records a one-shot PHI
        export-downloaded audit event on first access.
      operationId: v1.control.audit.exports.download
      parameters:
        - name: export
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The signed audit export ZIP.
          content:
            application/json:
              schema:
                type: object
            application/zip:
              schema:
                type: string
                format: binary
components:
  securitySchemes:
    http:
      type: http
      scheme: bearer

````