Form Forge’s webhook integration sends every form submission to any external URL as a JSON payload. Use it to connect forms to Zapier, Make (formerly Integromat), n8n, your own API endpoint, or any service that accepts HTTP POST.
Every form has a Webhook setting in the integrations panel. Enter the destination URL and Form Forge posts the submission to it after every successful submission.
The payload is a JSON object containing:
form_id — the Form Forge form IDform_title — the human-readable form titlesubmission_id — a unique ID for this submissionsubmitted_at — ISO 8601 timestampsource_url — the page URL the form was submitted fromip_address — submitter’s IP (hashed if configured)user_agent — submitter’s browserfields — an object mapping field IDs to their valuesAdd custom HTTP headers to the request — useful for authentication:
Authorization: Bearer your-api-token
X-API-Key: your-key-here
Content-Type: application/json
Headers are stored encrypted in the WordPress database.
If the webhook endpoint returns a non-2xx status or times out, Form Forge retries up to 3 times with exponential backoff (1 second, 5 seconds, 30 seconds). Permanently failed webhooks are logged in the admin so you can investigate.
Webhooks run via the Forge Queue, not synchronously in the submission flow. A slow external endpoint won’t block the user’s “Thank you” page from appearing.
Server-Side Request Forgery (SSRF) is a common web vulnerability where an attacker tricks your server into making requests to internal network addresses or cloud metadata endpoints. Without protection, someone could configure a webhook to point at http://localhost/ or http://169.254.169.254/ (AWS metadata) and extract information from your infrastructure.
Form Forge’s webhook integration blocks:
The destination URL is resolved and validated before the request is sent. Attempts to hit forbidden addresses are rejected and logged.
Connect Form Forge submissions to Zapier / Make workflows that trigger any of their thousands of integrations. Create records in Airtable, send SMS via Twilio, add rows to Google Sheets (via Zapier, if you prefer over the native Google Sheets integration), and more.
POST submissions to your own REST API for processing — scoring leads, running business logic, syncing to your CRM, triggering custom workflows.
If you run n8n on your own infrastructure, Form Forge can POST to your n8n webhook endpoint and trigger complex automations without giving up data control.
While Form Forge has native Slack and Discord integrations with Block Kit / Embed formatting, sometimes you want a custom format. Point the webhook at a Slack/Discord webhook URL and format the payload your way via a simple webhook receiver.
POST to a serverless function (AWS Lambda, Cloudflare Workers, Vercel) that writes the submission to your own database. Keeps form data in your infrastructure, not WordPress.
Form Forge’s admin includes a Test Webhook button that sends a sample payload to your configured URL. The response code and body are displayed so you can verify the endpoint is responding correctly before real submissions start flowing.
The Form Forge admin keeps a log of every webhook request:
You can replay failed webhooks manually from the log.
Get Form Forge — from $49/year →
Webhook integration is included in every plan — free and paid. No add-on, no separate subscription.