Browse documentation
Documents

Download an Excel Export

Download completed Manifest AI document results as customer-ready Excel workbooks through API v1.

After a document reaches completed status, GET /api/v1/documents/{id}/export with exports:read scope to receive the generated .xlsx workbook.

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

Availability conditions

The workbook is 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.