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 logo

Zapier

Zapier connects FormMaker to 6,000+ apps without code.

  1. In FormMaker, open your form's Integrations tab.
  2. Click Connect Zapier and copy your API key.
  3. In Zapier, create a new Zap and choose FormMaker → New Submission as the trigger.
  4. Paste your API key and select the form to watch.
  5. Add any action app (Gmail, Trello, Mailchimp…) and turn it on.
Google Sheets logo

Google Sheets

Send every response to a spreadsheet in real time.

  1. Open the Integrations tab and choose Google Sheets.
  2. Authorize FormMaker to access your Google account.
  3. Pick an existing spreadsheet or create a new one.
  4. 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.

  1. Open the Integrations tab and choose Webhook.
  2. Enter your endpoint URL (for example https://api.yoursite.com/forms).
  3. Optionally add a secret to verify the request signature.
  4. 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.