/bubble-tutorials

How to add video conferencing to a Bubble app

Learn how to quickly add reliable video conferencing to your Bubble app with simple steps, tools, and best practices.

Matt Graham, CEO of Rapid Developers

Book a call with an Expert

Starting a new venture? Need to upgrade your web or mobile app? RapidDev builds Bubble apps with your growth in mind.

Book a Free Consultation

How to add video conferencing to a Bubble app

To add video conferencing to a Bubble app, the simplest reliable path is using a third‑party service that already provides a prebuilt video room (like Daily.co, Twilio Video, or Agora). Bubble cannot create native video calling on its own; the video engine must come from an external provider, and Bubble just embeds it via an iframe or a small JavaScript snippet in an HTML element.

 

What You Actually Do in Bubble

 

You create a “Room” in your database, call the video provider’s API to generate a video room URL or token, store it in that Room, and then show that URL inside an HTML element or iframe on the page. That’s the core concept. All other features (permissions, scheduling, roles) are Bubble logic around this URL.

  • Daily is the easiest for beginners because you can embed with a single iframe and their API is simple.
  • Twilio Video is powerful but requires more setup (JWT tokens from your backend).
  • Agora works well but requires a plugin or custom JS integration.

 

Step‑by‑Step Using Daily (the simplest solid option)

 

This approach uses Bubble’s API Connector and an HTML element. No plugin required.

  • Create a Daily account and get your API key.
  • In Bubble, open API Connector and add a call to create a room.
// POST https://api.daily.co/v1/rooms
{
  "properties": {
    "enable_chat": true,
    "start_video_off": false
  }
}
  • Set the header in API Connector: Authorization: Bearer YOUR_DAILY_API\_KEY
  • Initialize the call; Bubble will return something like room\_name and url.
  • Create a Bubble data type called Room with a field video\_url (text).
  • When user creates a meeting, run a backend workflow that calls "Create Room" and saves the returned url into video\_url.
  • On the meeting page, add an HTML element and insert the video\_url inside an iframe.
<iframe src="https://your-daily-domain.daily.co/sample-room" allow="camera; microphone; display-capture" style="width:100%; height:100%; border:0;"></iframe>

Replace the src with the dynamic value: Current Page Room's video\_url.

 

Important Bubble Notes

 

  • Set Privacy Rules so only participants can read the Room’s video\_url.
  • Daily hosts and handles the call; Bubble only displays it.
  • No plugins required, but API Connector must be enabled.

Explore More Valuable No-Code Resources

How to integrate Bubble.io with Git?

Learn how to seamlessly integrate Bubble.io with Git through our comprehensive step-by-step guide. Perfect for beginners and professionals.

Explore

How to integrate Bubble.io with Reddit Ads?

Learn how to seamlessly integrate Bubble.io with Reddit Ads using our easy step-by-step guide. Boost your ad management today!

Explore

How to integrate Bubble.io with AWS S3?

Explore our step-by-step guide on integrating Bubble.io with AWS S3, making your app development process more efficient and secure.

Explore

How to integrate Bubble.io with Lucidchart?

Follow our step-by-step guide to seamlessly integrate Bubble.io with Lucidchart, enhancing your workflow & productivity.

Explore

How to integrate Bubble.io with Kentico?

Learn how to seamlessly integrate Bubble.io and Kentico with our comprehensive, easy to follow step-by-step guide.

Explore

How to integrate Bubble.io with Box?

Discover easy-to-follow steps for integrating Bubble.io with Box. Boost your workflow and secure your files seamlessly today.

Explore

Stuck in Bubble.io? We’re here to help!

Fix broken workflows | Optimize logic | Boost performance | Scale with confidence

4.9
Clutch rating 🌟
600+
Happy partners
17+
Countries served
190+
Team members

By clicking “Accept”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information.

Cookie preferences