Minform · Pipedream API

Home/Submissions

Submissions API (sample data)

Fetch recent submissions for Pipedream source setup — not live polling.

GEThttps://minform.io/api/pipedream/results

Returns the 10 most recent submissions for a form (no pagination). Live delivery uses webhooks. Requires read:submissions.

Field keys that no longer exist on the form's live schema are dropped (variables are kept). Shape matches webhook payloads.

Query parameters

ParamRequiredDescription
slugYesForm slug (same as form id from /forms)
https://minform.io/api/pipedream/results?slug=contact-form

Headers

HeaderRequired
Authorization: Bearer …Yes

Response shape

Array of automation payloads. Fixed fields use snake_case. Answer values are flattened onto the object using sanitized field labels as keys (not nested under fields).

[
  {
    "id": "01JABC...",
    "created_at": "2026-03-01T12:00:00.000Z",
    "form_id": "contact-form",
    "form_name": "Contact Form",
    "Name": "John Doe",
    "Email": "john@example.com",
    "Message": "Hello!",
    "Score (variable)": 10
  }
]
FieldTypeDescription
idstringSubmission id
created_atstring (ISO 8601)When submitted
form_idstringForm slug
form_namestringForm display name
<Label>anyOne property per answer; value is the submitted data

Label key rules

  • Non-word characters (except spaces) are stripped from the label.
  • Empty labels become Untitled <type> field.
  • Variables use {label} (variable).
  • Duplicate labels get a numeric suffix (Name2, …).

Errors

StatusWhen
400Missing slug
401Missing or invalid token
403Token lacks read:submissions
500Server error