Skip to Content

Get Form

Retrieves a single form by its ID.

GET /v1/forms/{formId}

Request

curl https://api.formtorch.com/v1/forms/a1b2c3d4e5 \ -H "Authorization: Bearer YOUR_API_KEY"

Path parameters

ParameterDescription
formIdThe 10-character form ID

Response

{ "id": "a1b2c3d4e5", "name": "Contact Form", "status": "active", "projectId": "p9q8r7s6t5", "createdAt": "2025-01-10T09:00:00.000Z", "updatedAt": "2025-03-01T14:22:00.000Z" }

Response fields

FieldTypeDescription
idstringForm ID
namestringForm display name
statusstringForm status (active, disabled)
projectIdstringParent project ID
createdAtstringISO 8601 creation timestamp
updatedAtstringISO 8601 last updated timestamp

Error responses

StatusCodeDescription
404not_foundNo form with this ID in your account
Last updated on