GET/forms/:id/responses/:responseId

Get 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/:responseId

Path Parameters

Headers

HeaderValue
AuthorizationBearer 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

FieldTypeDescription
data.idstringUnique response identifier (UUID)
data.formIdstringForm identifier
data.dataobjectKey-value map of fieldId to submitted answer
data.respondentEmailstring | nullEmail of the respondent (only set for private forms)
data.submittedAtstringISO 8601 submission timestamp

n8n

In n8n, this operation is available as Get under the Response resource in the Formfex node.