Get form

Get a single form by ID.

GET
/v1/forms/{form_id}

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

form_id*string

Form ID

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/forms/string"
{  "data": {    "created_at": "2025-02-17T17:49:19Z",    "field_count": 1,    "fields": [      {        "description": null,        "id": "ff_abc123",        "key": "full_name",        "label": "Full Name",        "must_be_true": false,        "options": null,        "position": 0,        "required": true,        "sensitive": false,        "type": "short_text"      }    ],    "id": "frm_d025a96ac0c6",    "internal_name": "Intake Form",    "object": "form",    "updated_at": "2025-02-17T17:49:19Z"  }}