Form Submissions API
Fetch form submission data using the FormSync Public API.
Get Form Submissions
Fetch all submissions for a specific form.
This endpoint returns only user-submitted data, without any internal metadata.
Endpoint
http
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
formId | string | true | The public Form ID. Example: fSxYzAbC1234 |
Example Request
curl
Successful Response
response
Response Schema
| Field | Type | Description |
|---|---|---|
success | boolean | Indicates if the request was successful. |
submissions | array | A list of submission objects. |
submissions[].data | object | The user-submitted data. |
submissions[].createdAt | string | The ISO timestamp of the submission. |
Response Details
- Only the
dataobject is returned - Internal fields are removed
- Results are sorted by latest submission first
Usage Example (JavaScript)
tsx
Security Notes
- Do not expose API keys in frontend code
- Use this API from a backend or server environment
- Rotate keys periodically
How is this guide?
Last updated on March 13, 2026