Export evaluation items to a file
Export all evaluation items for a single evaluation as a downloadable file.
The evaluation is specified by evaluation_id in the request body. export_format
selects CSV, JSON, or JSONL; for CSV the per-item data and files fields are
flattened into individual columns and metric-like result columns are expanded.
export_method controls delivery: direct returns the file contents inline in the
response, while signed_url uploads the file to object storage and returns a
pre-signed download URL. Requesting signed_url in an environment where object
storage is not configured fails with a 501, so use direct there instead. Set
include_archived=true to include archived items in the export. This endpoint reads
items only and does not modify the evaluation.
Authorizations
Headers
Body
The ID of the evaluation to export items from.
The method for exporting evaluation items. signed_url returns a pre-signed URL, while direct returns the raw content.
signed_url, direct The format of the exported evaluation items. json returns a single JSON array, while jsonl returns one JSON object per line.
json, jsonl, csv If true, include archived evaluation items in the export.
Response
Successful Response
Response model for exporting evaluation items. This class represents the response when users export evaluation items. It contains either a signed URL to download the exported data from object storage, or the actual content bytes when direct download is used (in environments where object storage is not configured).

