Minform · Pipedream API

Home/Forms

Forms API

List forms the authenticated user can access across their workspaces.

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

ParamTypeDefaultDescription
pageinteger0Zero-based page index
limitinteger25Page size

Headers

HeaderRequiredDescription
AuthorizationYesBearer <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
  }
]
FieldTypeDescription
idstringForm slug — use this as formId / slug elsewhere
namestringDisplay name (Untitled Form if empty)
space_idstringWorkspace id
last_modifiedstring (datetime)Last edit time
response_countintegerSubmission count

Response headers

HeaderDescription
X-Total-CountTotal forms matching the query
LinkPresent when more pages exist, e.g. <…/forms?page=1&limit=25>; rel="next"

Errors

StatusWhen
401Missing or invalid token
403Token lacks read:forms
500Server error