Formpost

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"
ParameterDefaultDescription
access_keyLimit results to one form. Omit to read every form on the account.
limit50How many rows to return. Maximum 200.
offset0Row offset for paging.
sinceISO 8601 timestamp. Only return submissions newer than this.
include_spam0Set 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.