Features
Submissions API
Read your submissions programmatically with a REST endpoint.
Generate an API key in your dashboard settings, then read submissions from your own code — for a custom dashboard, a nightly export, or piping into a CRM. The API is read-only.
terminal
curl "https://formpost.ai/api/v1/submissions?limit=20" \
-H "Authorization: Bearer fp_your_api_key"| Parameter | Default | Description |
|---|---|---|
| access_key | — | Limit results to one form. Omit to read every form on the account. |
| limit | 50 | How many rows to return. Maximum 200. |
| offset | 0 | Row offset for paging. |
| since | — | ISO 8601 timestamp. Only return submissions newer than this. |
| include_spam | 0 | Set to 1 to include submissions flagged as spam. |
The API key grants read access to every submission on the account. Keep it server-side — never ship it in browser JavaScript.