Download OpenAPI specification:
API for retrieving form submissions via Form.taxi. Available from the "Standard" plan and above. Further information: https://docs.form.taxi/en/api
Returns the list of form submissions including all field values for the specified form. The Api-Key header must be sent with every request and is specific to each form.
| form_code required | string Example: cp2j57ye The unique code of the form. Found in the connection details of the form overview in the panel. |
| since | string <date-time> Example: since=2025-08-13T13:15:50+02:00 Filters the submission list to a specific start date. Must be provided in ISO 8601 format. |
| limit | integer [ 1 .. 50 ] Default: 25 Example: limit=10 Limits the number of submissions returned. Default: 25, Maximum: 50. |
| page | integer >= 1 Default: 1 Example: page=2 Specifies which page of the submission list to return. Default: 1. |
| spam | boolean Default: false Example: spam=true By default, only inbox submissions are returned. Set |
| attachments | boolean Default: true Example: attachments=false Submission data is returned with file attachments by default. Set |
{- "success": true,
- "data": {
- "pagination": {
- "countTotal": 54,
- "countPage": 25,
- "currentPage": 1,
- "totalPages": 2
}, - "submissions": [
- {
- "_id": "rIYOyM9pUebOq1kwvoz6M0JcXhhVsuuK",
- "_date": "2024-08-21T11:59:32+02:00",
- "_box": "inbox",
- "fields": {
- "Email": "email@domain.com",
- "Message": "This is my message."
}, - "fields_summary": {
- "text": "EMAIL: email@domain.com, MESSAGE: This is my message.",
- "html": "<b>Email</b>: email@domain.com, <b>Message</b>: This is my message.",
- "markdown": "*Email*: email@domain.com, *Message*: This is my message."
}, - "attachments": [
- {
- "fieldName": "Image",
- "fileName": "Photo.jpg",
- "fileSize": "896641",
}
]
}
]
}
}