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

# Get event download URLs

> Generates pre-signed download URLs for aggregated audit event Parquet files within the specified timestamp range. Returns one URL per monthly Parquet file. URLs are time-limited and expire after the configured duration.



## OpenAPI

````yaml /api-specs/cloud/workspace-file-audit-trail-api.yaml get /v1/events/download-urls
openapi: 3.0.0
info:
  contact:
    email: support@dominodatalab.com
    name: Domino Data Lab
    url: https://tickets.dominodatalab.com/hc/en-us
  description: >-
    Service to ingest, process, deduplicate, and serve workspace file audit
    events captured by Falco in Domino Data Lab workspaces
  license:
    name: Proprietary
    url: https://www.dominodatalab.com/terms
  title: Domino Workspace File Audit API
  version: '1.0'
servers:
  - url: https://mycluster.domino.tech
    description: >-
      Replace 'mycluster.domino.tech' with your Domino cluster hostname. For
      Domino Cloud customers, that is <your-subdomain>.domino.tech (e.g.,
      acme.domino.tech). For self-hosted deployments, it is the hostname you
      reach the Domino UI at.
security: []
paths:
  /v1/events/download-urls:
    get:
      tags:
        - events
      summary: Get event download URLs
      description: >-
        Generates pre-signed download URLs for aggregated audit event Parquet
        files within the specified timestamp range. Returns one URL per monthly
        Parquet file. URLs are time-limited and expire after the configured
        duration.
      parameters:
        - description: Start of the time range in Unix epoch nanoseconds
          in: query
          name: startTimestamp
          required: true
          schema:
            type: string
        - description: >-
            End of the time range in Unix epoch nanoseconds. Must be >=
            startTimestamp
          in: query
          name: endTimestamp
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.HTTPError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.MiddlewareError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.MiddlewareError'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.HTTPError'
components:
  schemas:
    server.HTTPError:
      properties:
        code:
          description: HTTP status code
          example: 400
          type: integer
        message:
          description: Human-readable error description
          example: end timestamp cannot be before start timestamp
          type: string
      type: object
    server.MiddlewareError:
      properties:
        error:
          description: Human-readable error description
          example: Authorization header not found
          type: string
      type: object

````