> ## Documentation Index
> Fetch the complete documentation index at: https://formbnb.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# FormBnB vs Getform

> Comparing FormBnB and Getform - free tiers, features, and limits

## Overview

FormBnB and Getform are both form backend services. Both let you collect form submissions without a server. Here's how they stack up.

## Free Plan Comparison

| Feature             | FormBnB (Free)                                 | Getform (Free)      |
| ------------------- | ---------------------------------------------- | ------------------- |
| Submissions         | **Unlimited**                                  | 50/month            |
| Forms               | **Unlimited**                                  | 1                   |
| File uploads        | ✅                                              | ✅ (limited)         |
| Spam protection     | ✅ Honeypot, reCAPTCHA, hCaptcha, Turnstile, ML | ✅ Basic spam filter |
| Email notifications | ✅                                              | ✅                   |
| Webhooks            | ✅                                              | ❌ (paid)            |
| API access          | ✅                                              | ❌ (paid)            |
| Integrations        | 21+                                            | Limited on free     |

## Why Choose FormBnB

### No Submission Limits

Getform's free plan gives you 50 submissions per month on 1 form. FormBnB gives you unlimited submissions on unlimited forms.

### Webhooks on Free

FormBnB includes webhooks on the free plan. Getform requires a paid plan for webhook support.

### More Integrations

FormBnB offers 21+ integrations out of the box — Slack, Discord, Google Sheets, Notion, Airtable, HubSpot, Mailchimp, and more. Getform's integration options are more limited on the free tier.

### Better Spam Protection

FormBnB offers multiple layers: honeypot fields, reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile, ML-based filtering, email/domain/IP blocklists, and work email validation. Getform has a basic spam filter.

### Full API Access

FormBnB gives you complete API access on the free plan — list forms, read submissions, export data. Getform restricts API access to paid plans.

## When Getform Might Be Better

* If you need Getform's specific Zapier integration setup
* If you're already using Getform and don't need more than 50 submissions/month

## Switching from Getform

Switching is a one-line change — update your form's `action` URL:

```html theme={null}
<!-- Before (Getform) -->
<form action="https://getform.io/f/YOUR_TOKEN" method="POST">

<!-- After (FormBnB) -->
<form action="https://api.formbnb.com/f/YOUR_ORG/YOUR_FORM" method="POST">
```

Everything else stays the same. Your field names, HTML structure, and styling don't need to change.
