AnimationFunnel

Submissions API

Read submissions programmatically, filter by date or status, and export in bulk.

List submissions

bash
GET /v1/forms/:form_id/submissions
Authorization: Bearer af_live_...

Filters

Supported query parameters:

bash
?from=2026-01-01
&to=2026-04-12
&completed=true
&page=1
&per_page=50

Get one submission

bash
GET /v1/forms/:form_id/submissions/:id

Returns the full answer payload along with metadata (IP country, referrer, UTM tags, submission duration).

Bulk export

For very large exports, request an async export job:

bash
POST /v1/forms/:form_id/submissions/export
Content-Type: application/json

{ "format": "csv", "from": "2026-01-01", "to": "2026-04-12" }

We email you a signed download link when the export is ready. Large exports run in the background and never time out.

Was this page helpful?