Available on: Personal, Professional, and Business plans
If you need to see submissions outside of the Formspree dashboard, you can export them as a CSV or JSON file.
Exporting Submissions
To do this, on the Submissions tab, click Export at the top right of the table. You can can select CSV or JSON.
CSV exports will place all field names in the headers. If your form's field names have changed, you may notice that some rows will be blank, indicating that no value was submitted for that field name.
JSON exports will be in the following format:
Property | Type | Default | Description |
---|---|---|---|
email |
Array | An Array of strings containing the form's email | |
fields |
Array | An Array of strings of field names across all submissions | |
host |
String | A String of the form's host if specified (legacy forms only) | |
submissions |
Array | An Array of objects of Submissions, containing a key-value pair of submissions |
An example can be found below:
{
"email": [
"team@formspree.io",
"support@formspree.io"
],
"fields": [
"email",
"message"
],
"host": null,
"submissions": [
{
"email": "emily@formspree.com",
"message": "Formspree is awesome!"
}
]
}