Integrations
Connecting FormMaker to your tools
FormMaker supports 50+ integrations so every submission can flow straight into the tools your team already uses. This guide covers the three most popular setups — Zapier, Google Sheets and webhooks. You can browse the full directory on the integrations page.
Zapier
Zapier connects FormMaker to 6,000+ apps without code.
- In FormMaker, open your form's Integrations tab.
- Click Connect Zapier and copy your API key.
- In Zapier, create a new Zap and choose FormMaker → New Submission as the trigger.
- Paste your API key and select the form to watch.
- Add any action app (Gmail, Trello, Mailchimp…) and turn it on.
Google Sheets
Send every response to a spreadsheet in real time.
- Open the Integrations tab and choose Google Sheets.
- Authorize FormMaker to access your Google account.
- Pick an existing spreadsheet or create a new one.
- Map each form field to a column — new submissions append a row automatically.
Webhooks
Webhooks give you full control: FormMaker sends a JSON payload to your endpoint on every submission.
- Open the Integrations tab and choose Webhook.
- Enter your endpoint URL (for example
https://api.yoursite.com/forms). - Optionally add a secret to verify the request signature.
- Save — we'll POST the submission payload immediately.
The payload looks like this:
{
"formId": "frm_123",
"submittedAt": "2025-06-01T10:00:00Z",
"answers": {
"name": "Ada Lovelace",
"email": "ada@example.com"
}
}Need something custom?
Anything not covered by a native integration can be built on top of webhooks or the FormMaker API.