GET
/forms/:id/responses/:responseIdGet Response
Retrieve a single form response by ID
Scope: RESPONSES_READ
Overview
Returns a single submission for a specific form, including the full field data and submission metadata.
Request
GET
/forms/:id/responses/:responseIdPath Parameters
Headers
| Header | Value |
|---|---|
Authorization | Bearer fxk_live_<your-api-key> |
Example Request
curl -X GET "https://api.formfex.com/api/v1/public/forms/FORM_ID/responses/RESPONSE_ID" \
-H "Authorization: Bearer $FORMFEX_API_KEY"Response
Response Fields
| Field | Type | Description |
|---|---|---|
data.id | string | Unique response identifier (UUID) |
data.formId | string | Form identifier |
data.data | object | Key-value map of fieldId to submitted answer |
data.respondentEmail | string | null | Email of the respondent (only set for private forms) |
data.submittedAt | string | ISO 8601 submission timestamp |
n8n
In n8n, this operation is available as Get under the Response resource in the Formfex node.