Export

Export answers, summaries and reports to convenient file formats

Data export

Export lets you download respondent answers, survey summaries and reports as CSV, XLSX, Word and PDF files for further analysis, sharing with colleagues, or loading into BI systems.

All export endpoints work on top of existing report and response data and use the same filters as the /quiz/{id}/summary and /quiz/{id}/report methods.

Endpoint overview

HTTP Endpoint Purpose
GET /quiz/{id}/answers/csv Export answers to CSV
GET /quiz/{id}/answers/xlsx Export answers to Excel (XLSX)
GET /quiz/{id}/answers/word Export answers to Word
GET / POST /quiz/{id}/summary/pdf Export survey summary to PDF
POST /quiz/{id}/report/pdf Export detailed report to PDF
GET /quiz/{id}/report/word Export report to Word

Export answers (CSV / XLSX / Word)

To export raw respondent answers, use the /answers/csv, /answers/xlsx and /answers/word endpoints.

GET /quiz/{id}/answers/csv?is_complete=true

Export all completed survey answers in CSV format.

Word format (answers)

The /answers/word endpoint returns a binary file (Content-Type: application/msword or application/vnd.openxmlformats-officedocument.wordprocessingml.document). The document is a table: rows = respondent answers, columns = questions. Save the response with the flag -o answers.doc or -o answers.docx.

Main query parameters

Parameter Type Description
is_complete string Filter by answer completion: true or false (default true).
ids array Array of specific answer IDs to export.
excludedIds array Array of answer IDs to exclude from the export.

Summary and report export (PDF / Word)

If you need a human-readable report rather than a raw answer array, use the summary and report export. Export uses the same filters as regular report endpoints.

GET /quiz/{id}/summary/pdf

Survey summary statistics in a PDF file.

POST /quiz/{id}/report/pdf

Detailed report with filters (dates, completion status, etc.) in a PDF file.

GET /quiz/{id}/report/word

Report in Microsoft Word format (DOC/DOCX). Binary file, Content-Type: application/msword or application/vnd.openxmlformats-officedocument.wordprocessingml.document. The document contains charts, summary tables and a per-question breakdown.

See full request and response body examples in the ## Data export section of api_v3.md or in the LLM version at /static/api/export.md.