Skip to main content
GET
List form submissions
Looking for real-time submissions? The most efficient way to instantly retrieve new submissions is by using a webhook. This allows you to receive data as soon as a form is submitted, without needing to poll the API.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

formId
string
required

The ID of the form

Query Parameters

page
number

Page number for pagination (default: 1)

filter
enum<string>

Filter submissions by status

Available options:
all,
completed,
partial
startDate
string<date-time>

Filter submissions submitted on or after this date (ISO 8601 format)

endDate
string<date-time>

Filter submissions submitted on or before this date (ISO 8601 format)

afterId
string

Get submissions that came after a specific submission ID

limit
number
default:50

Number of submissions to return per page (default: 50, max: 500)

Required range: 1 <= x <= 500

Response

List of form submissions

page
number

Current page number

limit
number

Number of submissions per page

hasMore
boolean

Whether there are more pages available

totalNumberOfSubmissionsPerFilter
object
questions
object[]

List of form questions

submissions
object[]

List of form submissions