Get workflow data by ID
Authorizations
API key for authentication
Path Parameters
ID of the workflow to retrieve data from
Query Parameters
ID of a specific run to retrieve data from
Format of the response data
json, csv Field to sort the results by
Sort order (ascending or descending)
asc, desc JSON-encoded array of filter objects
Page number for pagination
x >= 1Number of items per page (0 for streaming all data)
x >= 0Enable gzip compression for the response
Filter results by specific row IDs (comma-separated or JSON array)
Include validation anomalies for each row in the response
"stream" (default) returns the data inline (subject to a 5-minute response timeout). "link" materializes the full result set as a CSV in object storage and returns a JSON body with an export id; the caller then streams the file from GET /v4/workflows/{workflowId}/data/exports/{exportId}. Use "link" for large exports that would exceed the streaming timeout. Currently requires format=csv.
stream, link Response
Workflow data returned successfully. The application/json body has two shapes: the default streaming shape (workflowId, data, pagination), and the download=link shape (export id pointing at a materialized CSV; fetch via the exports endpoint).