GEThttps://minform.io/api/pipedream/forms
Used to power dynamic form pickers in Pipedream sources. Returns forms from every space the user is a member of, newest last_modified first. Requires scope read:forms.
Query parameters
| Param | Type | Default | Description |
|---|
page | integer | 0 | Zero-based page index |
limit | integer | 25 | Page size |
Headers
| Header | Required | Description |
|---|
Authorization | Yes | Bearer <access_token> |
Response
JSON array of form objects. Empty array if the user has no spaces or forms.
[
{
"id": "contact-form",
"name": "Contact Form",
"space_id": "01H...",
"last_modified": "2026-03-01T12:00:00.000Z",
"response_count": 42
}
]| Field | Type | Description |
|---|
id | string | Form slug — use this as formId / slug elsewhere |
name | string | Display name (Untitled Form if empty) |
space_id | string | Workspace id |
last_modified | string (datetime) | Last edit time |
response_count | integer | Submission count |
Response headers
| Header | Description |
|---|
X-Total-Count | Total forms matching the query |
Link | Present when more pages exist, e.g. <…/forms?page=1&limit=25>; rel="next" |
Errors
| Status | When |
|---|
| 401 | Missing or invalid token |
| 403 | Token lacks read:forms |
| 500 | Server error |