Integration Guide

How to Connect Webflow Forms to Airtable (2026)

Webflow stores form submissions in a list you can barely filter and can't automate against. Pushing them into Airtable gives you a real CRM view — assignment, status, follow-up dates and reporting.

Last reviewed: July 2026

The workflow at a glance

Trigger

Webflow — form submission (webhook)

Action

Airtable — create record

Who this is for: Agencies and marketing teams running lead capture on Webflow sites who need submissions in a workable database.

Our pick for this integration

Make

4.7From $9/mo

Make's webhook module shows you the live payload structure as it arrives, which makes mapping nested Webflow fields far faster than guessing in a linear builder.

How to connect Webflow Forms to Airtable, step by step

  1. 1

    In your automation platform, create a scenario starting with a custom webhook trigger and copy the generated URL.

  2. 2

    In Webflow, open Site Settings → Integrations → Webhooks and add a 'Form Submission' webhook pointing at that URL.

  3. 3

    Submit a real test entry on the published site — Webflow only sends webhooks from published domains, not the designer preview.

  4. 4

    Inspect the received payload and note that all form fields arrive nested under the data object.

  5. 5

    Map each field to its Airtable column, adding Source = site name and Submitted = the webhook timestamp.

  6. 6

    Add a filter step that drops submissions where the email field fails a basic pattern check, which kills most bot spam.

  7. 7

    Enable the scenario and re-test from the live site.

Common mistakes to avoid

  • Webhooks only fire on published Webflow sites — testing in the designer produces nothing.
  • Renaming a Webflow form field changes the payload key and silently breaks the mapping.
  • Webflow retries failed webhooks only a few times; add error handling so failures don't vanish.

Other tools that can do this

Pabbly Connect

Agencies and solopreneurs who want flat pricing

Get Started

n8n

Developers who want to self-host their automations

Visit n8n Website

Frequently asked questions

Does Webflow have a native Airtable integration?

No. Webflow sends webhooks; you need an automation platform (or your own endpoint) to shape the payload and write it to Airtable.

How do I stop spam submissions reaching Airtable?

Enable Webflow's built-in reCAPTCHA, then add an email-format filter in the automation before the Airtable step.

Can I send the same submission to Slack too?

Yes — add a second action after the Airtable step. One trigger can fan out to as many destinations as you like.

Keep going