KuikCodeDocs
Integrations

Form webhooks

Send every KuikPage form submission to Zapier, Make, n8n or your own endpoint.

Select a Form block in the KuikPage editor. Under New submissions set a Webhook URL and, if you like, Email me each one. Every submission is stored in the dashboard's Submissions list regardless. Form webhooks are included with the Business plan.

Payload

{
  "event": "form.submission",
  "page": { "id": "pg_...", "url": "https://yourbrand.kuik.page" },
  "blockId": "f8a2...",
  "formTitle": "Request a quote",
  "submittedAt": "2026-09-06T14:02:11.482Z",
  "country": "US",
  "data": {
    "Name": "Ada Lovelace",
    "Email": "ada@example.com",
    "Message": "Two pallets, please.",
    "Consent": true
  }
}

data is keyed by the labels you gave the fields, so a Zapier zap or a CRM mapping reads naturally. Form webhooks are not signed; use a secret path segment in your URL if you need to reject strangers. The endpoint rules are the same as for scan webhooks: https, public hostname.

Submissions are also available through GET /submissions in the API.

On this page