Skip to main content

Why Use FormBnB with Bubble

Bubble has built-in form elements, but sending that data externally requires plugins or API workflows. FormBnB simplifies this:
  • No plugins needed — just an HTML embed or API call
  • Unlimited submissions on the free plan
  • Spam protection, webhooks, and 21+ integrations
  • Email notifications out of the box
  • Full API access to submission data

Option 1: HTML Embed

The simplest approach. Add an HTML element in Bubble and paste your FormBnB form.
1

Create FormBnB Form

Create a new form in your FormBnB dashboard and copy the form slug.
2

Add HTML Element

In the Bubble editor, add an HTML element to your page.
3

Paste Form Code

Paste the form HTML below into the element.

Option 2: API Connector

For tighter integration with Bubble’s native elements, use the API Connector plugin to POST to FormBnB.
1

Install API Connector

In Bubble, go to Plugins → search for API Connector → install it.
2

Add API Call

Create a new API with these settings:
  • Name: FormBnB Submit
  • Method: POST
  • URL: https://api.formbnb.com/f/YOUR_ORG/YOUR_FORM
  • Headers: Content-Type: application/json, Accept: application/json
  • Body type: JSON
  • Body:
3

Trigger from Workflow

In your page workflow, trigger the API call on button click and pass the input values.
The HTML embed approach is faster to set up. Use the API Connector when you need to combine FormBnB submissions with other Bubble workflows.