Contents
The platform stores every submission you receive and lets you export it at any time from the dashboard.
Export to CSV
CSV is compatible with Excel, Google Sheets, and any data analysis tool. Each row represents a submission, and each column corresponds to one form field.
To export your submissions:
- Go to the dashboard.
- Select the form whose data you want to export.
- Open the Submissions section.
- Click the Export CSV button.
- The file will be downloaded automatically to your device.
CSV file structure
The exported file includes one column for each form field, plus the following metadata columns generated automatically:
| Column | Description |
|---|---|
id |
Unique submission identifier |
submitted_at |
Date and time of the submission in ISO 8601 format |
ip |
IP address from which the submission was sent |
The rest of the columns correspond to the fields sent by the form, using the value of the name attribute as the column header.
Example
| id | submitted_at | ip | name | message | |
|---|---|---|---|---|---|
| 001 | 2026-05-26T10:30:00Z | 190.x.x.x | Ana Garcia | [email protected] | Hello, I need more information |
| 002 | 2026-05-26T11:15:00Z | 181.x.x.x | Carlos Lopez | [email protected] | What are your prices? |
Tip: If you use Google Sheets, you can import the CSV directly from File → Import and configure periodic updates to keep your data synchronized.