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

# Create workflow data export

> Materializes the full result set as CSV, JSON, or Parquet to object storage and returns a self-authenticating
URL that can be opened by external clients (Claude Desktop, Claude for Excel, code execution sandboxes,
browsers) without an Authorization header. The URL is HMAC-signed and bound to the exportId, workflowId,
format and expiry.




## OpenAPI

````yaml get /v4/workflows/{workflowId}/data/export
openapi: 3.0.3
info:
  title: Kadoa API
  version: 3.0.0
  contact:
    name: Support
    email: support@kadoa.com
servers:
  - url: https://api.kadoa.com
security: []
paths:
  /v4/workflows/{workflowId}/data/export:
    get:
      tags:
        - Workflows
      summary: Create workflow data export
      description: >
        Materializes the full result set as CSV, JSON, or Parquet to object
        storage and returns a self-authenticating

        URL that can be opened by external clients (Claude Desktop, Claude for
        Excel, code execution sandboxes,

        browsers) without an Authorization header. The URL is HMAC-signed and
        bound to the exportId, workflowId,

        format and expiry.
      parameters:
        - name: workflowId
          in: path
          required: true
          schema:
            type: string
        - name: format
          in: query
          required: false
          schema:
            type: string
            enum:
              - csv
              - json
              - parquet
            default: csv
        - name: runId
          in: query
          required: false
          schema:
            type: string
        - name: filters
          in: query
          required: false
          schema:
            type: string
        - name: sortBy
          in: query
          required: false
          schema:
            type: string
        - name: order
          in: query
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
            default: asc
        - name: rowIds
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Export materialized
          content:
            application/json:
              schema:
                type: object
                required:
                  - workflowId
                  - runId
                  - format
                  - rowCount
                  - url
                  - expiresAt
                properties:
                  workflowId:
                    type: string
                  runId:
                    type: string
                  executedAt:
                    type: string
                    format: date-time
                  format:
                    type: string
                    enum:
                      - csv
                      - json
                      - parquet
                  rowCount:
                    type: integer
                  url:
                    type: string
                    description: >-
                      Signed, self-authenticating download URL. Valid until
                      expiresAt.
                  expiresAt:
                    type: string
                    format: date-time
        '400':
          description: Invalid query params
        '401':
          description: Unauthorized
        '404':
          description: Workflow or run not found
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token for authentication

````