Get the next one in your inbox.
One email when we publish something worth reading. No spam — appropriately enough, we'd know.
Webflow's built-in form spam handling is a single on/off toggle. Here's how to layer real spam protection on top by routing your Webflow form through a FormBridge endpoint.

Get an instant summary, key takeaways, action items, and answers to your questions about this article.
Webflow's Form component only offers a basic reCAPTCHA toggle. To stop spam for good, replace it with a plain HTML form (in an Embed element) posted to a FormBridge endpoint, which scores every submission automatically and adds an optional honeypot, CAPTCHA, and an authorized domains allow-list.
Webflow's Form component ships with a single spam control: a Google reCAPTCHA toggle. Turn it on and every visitor solves a challenge; turn it off and anything goes. There's no honeypot fallback, no way to score submissions before they hit your inbox, and no way to restrict which domains are allowed to submit — so a single leaked embed or scraped page can flood your notifications indefinitely.
Webflow's own Form component always posts to Webflow's backend, so to add a real spam pipeline you swap it for a plain HTML form inside an Embed element and point the action at a FormBridge endpoint:
<form action="https://app.formbridge.ai/api/forms/fb_8h2k9p" method="POST">
<input name="full-name" placeholder="Full name" />
<input name="email" type="email" placeholder="Email" />
<textarea name="message" placeholder="Message"></textarea>
<button type="submit">Send</button>
</form>
You keep full control of the markup, so existing classes and custom CSS carry over — this is just a different element wrapping the same fields.
Once submissions run through FormBridge, every one is scored automatically before it reaches your inbox — no setup required. From there, Form → Settings → Spam Protection lets you layer on:
honeypot, or your own) that silently rejects any submission that fills it in, since real visitors never see it.Anything flagged lands in a separate Spam tab instead of your inbox, so you can spot-check without digging through real leads.
The free plan covers up to 1,000 submissions a month, which is plenty for most single-form marketing sites — upgrade to Pro ($9/mo, 25,000 submissions) if you're running higher-traffic campaigns.
Yes — you replace the Form component with an Embed element containing a plain HTML form, so your existing classes and custom CSS can be reused for styling.
No. Once submissions post to FormBridge, spam protection is configured there instead — automatic scoring plus optional honeypot, CAPTCHA, and an authorized domains allow-list — so Webflow's own toggle becomes redundant.
One email when we publish something worth reading. No spam — appropriately enough, we'd know.