Skip to main content
GET
/
forms
/
{id}
/
submissions
List a form's submissions
curl --request GET \
  --url https://formitto.com/v1/forms/{id}/submissions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "formId": 123,
      "formData": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "sourceDomain": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.formitto.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Formitto API key created in the dashboard (Settings → API keys). Pass it as Authorization: Bearer fmt_live_....

Path Parameters

id
integer
required

The resource id.

Query Parameters

page
integer
default:1

1-based page number.

Required range: x >= 1
limit
integer
default:25

Items per page (max 100).

Required range: 1 <= x <= 100

Response

A page of submissions.

data
object[]
required
pagination
object
required