Form.taxi Form API (1.0.0)

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

Retrieve submissions

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.

Authorizations:
ApiKeyHeader
path Parameters
form_code
required
string
Example: cp2j57ye

The unique code of the form. Found in the connection details of the form overview in the panel.

query Parameters
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 spam=true to also include submissions from the spam folder.

attachments
boolean
Default: true
Example: attachments=false

Submission data is returned with file attachments by default. Set attachments=false to exclude file attachments from the response.

Responses

Response samples

Content type
application/json
{
  • "success": true,
  • "data": {
    }
}