Clipform

Get aggregated form results

Returns aggregated answer statistics per node, including response counts, percentages, and a flow diagram with node-to-node transitions.

GET
/forms/{formId}/results

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

Path Parameters

formId
Required
string
Format: "uuid"
curl -X GET "https://api.clipform.io/v1/forms/497f6eca-6276-4993-bfeb-53cbbbba6f08/results" \
  -H "Authorization: Bearer <token>"

Aggregated results

{
  "total_responses": 0,
  "nodes": [
    {
      "node_id": "string",
      "node_text": "string",
      "node_type": "string",
      "total_responses": 0,
      "total_views": 0,
      "answers": [
        {}
      ]
    }
  ],
  "flow": {
    "nodes": [
      {}
    ],
    "links": [
      {}
    ]
  }
}