Browse documentation
Documents

Download an Excel or CSV Export

Download completed Manifest AI document results as customer-ready Excel workbooks or UTF-8 CSV files through API v1.

After a document reaches completed status, GET /api/v1/documents/{id}/export with exports:read scope. The default is .xlsx; add ?format=csv for UTF-8 CSV.

Download request

Stream the binary response to storage instead of parsing it as JSON.

cURL
curl -L "https://manifestai.io/api/v1/documents/DOCUMENT_ID/export" \
  -H "Authorization: Bearer $MANIFEST_AI_API_KEY" \
  --output manifest-result.xlsx

CSV delivery

Request a destination-friendly UTF-8 CSV when a flat file is required.

cURL
curl -L "https://manifestai.io/api/v1/documents/DOCUMENT_ID/export?format=csv&template_id=EXPORT_TEMPLATE_ID" \
  -H "Authorization: Bearer $MANIFEST_AI_API_KEY" \
  --output manifest-result.csv

Availability conditions

Exports are available only for completed, retained results.

  • The key needs exports:read.
  • The document must belong to the authenticated workspace.
  • Processing must be completed.
  • The result must not be deleted or expired.
  • Use Content-Disposition for the server-provided filename.

Discover template IDs

List the authenticated workspace's export templates before requesting an exact file.

cURL
curl "https://manifestai.io/api/v1/export-templates" \
  -H "Authorization: Bearer $MANIFEST_AI_API_KEY"