Minform · Pipedream API
Fetch recent submissions for Pipedream source setup — not live polling.
https://minform.io/api/pipedream/resultsReturns the 10 most recent submissions for a form (no pagination). Live delivery uses webhooks. Requires read:submissions.
| Param | Required | Description |
|---|---|---|
slug | Yes | Form slug (same as form id from /forms) |
https://minform.io/api/pipedream/results?slug=contact-form| Header | Required |
|---|---|
Authorization: Bearer … | Yes |
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
}
]| Field | Type | Description |
|---|---|---|
id | string | Submission id |
created_at | string (ISO 8601) | When submitted |
form_id | string | Form slug |
form_name | string | Form display name |
<Label> | any | One property per answer; value is the submitted data |
Untitled <type> field.{label} (variable).Name2, …).| Status | When |
|---|---|
| 400 | Missing slug |
| 401 | Missing or invalid token |
| 403 | Token lacks read:submissions |
| 500 | Server error |