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

# Export runs as a CSV download

> Bulk export of the filtered run list as CSV (default) or JSON. Honors the
same advanced filters as the run list. Capped at ``_EXPORT_CAP`` rows;
truncation is flagged in-band (never a silent loss).



## OpenAPI

````yaml /openapi.json get /api/observability/runs/export
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/observability/runs/export:
    get:
      tags:
        - observability
      summary: Export runs as a CSV download
      description: >-
        Bulk export of the filtered run list as CSV (default) or JSON. Honors
        the

        same advanced filters as the run list. Capped at ``_EXPORT_CAP`` rows;

        truncation is flagged in-band (never a silent loss).
      operationId: get_api_observability_runs_export
      responses:
        '200':
          content:
            application/octet-stream:
              schema:
                type: string
            text/csv:
              schema:
                type: string
          description: Success.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Malformed request.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````