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
| Parameter | Description |
|---|---|
formId | The 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
| Field | Type | Description |
|---|---|---|
id | string | Form ID |
name | string | Form display name |
status | string | Form status (active, disabled) |
projectId | string | Parent project ID |
createdAt | string | ISO 8601 creation timestamp |
updatedAt | string | ISO 8601 last updated timestamp |
Error responses
| Status | Code | Description |
|---|---|---|
404 | not_found | No form with this ID in your account |
Last updated on