← All use cases
Webhook integration

Forms for Webhook

Pipe submissions anywhere. A signed JSON payload is POSTed to your endpoint in real time — wire forms into your own backend, queue, or any API.

Every submission POSTs a JSON payload to your endpoint — field data plus a submission ID, form ID, and timestamp — the instant it's submitted. Total control. Pipe submissions into your own backend, a queue, a database, or any API, and handle them however your code wants.

Webhooks by Zapier is a paid-tier feature billed per task; rolling your own means writing signatures, retries, and idempotency yourself. This sends a signed payload out of the box.

The honest catch: every payload is signed with an HMAC-SHA256 header over the raw body, and we retry on failure with backoff. Verify the signature and make your handler idempotent — standard webhook hygiene.

Webhook form templates