Sign in

List form submissions

documented

Retrieve a paginated list of submissions for the specified form. Requires an api_token and supports optional query parameters: page, spam, startdate, enddate, include_attachments (and any default pagination behavior). The response includes the submissions array and a meta.pagination object.

GET /api/v1/forms/{form_id}/submissions.jsonFormsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://formkeep.com/api/v1/forms/{{$form_id}}/submissions.json?api_token={{FORMKEEP_API_TOKEN}}&page={{$page}}&spam={{$spam}}&startdate={{$startdate}}&enddate={{$enddate}}&include_attachments={{$include_attachments}}" \
  -X GET \
  -H "Accept: application/json"