/bubble-tutorials

How to integrate SoundCloud in Bubble

Learn how to integrate SoundCloud with Bubble using simple steps to embed players, stream audio, and enhance your no‑code app with music features.

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 integrate SoundCloud in Bubble

A direct way to integrate SoundCloud in Bubble is to use SoundCloud’s oEmbed endpoint. Bubble can call this without authentication, return an embeddable HTML player, and then you display that HTML using an HTML element. This is the easiest and most reliable approach because SoundCloud’s full API requires OAuth 2.0 (which is deprecated for public apps), but oEmbed still works well for embedding tracks and playlists.

 

Two ways to integrate SoundCloud

 

The practical approach in Bubble depends on what you need:

  • If you only need to display a SoundCloud track/playlist: use the oEmbed API (simple, no login needed).
  • If you need advanced actions like searching SoundCloud or account‑level features: this is no longer supported for new apps because SoundCloud’s public API access is restricted. So stick with oEmbed unless you already have API keys approved.

 

How to embed a SoundCloud track using oEmbed (recommended)

 

This lets you enter a SoundCloud URL and display the player in Bubble.

  • Create an API Connector call:
    • Set it as GET
    • URL: https://soundcloud.com/oembed
  • Add a query parameter url that you pass dynamically from Bubble.
  • Set Return type = JSON.

 

// Example API call in Bubble's API Connector
GET https://soundcloud.com/oembed?format=json&url=https://soundcloud.com/forss/flickermood

 

This returns JSON containing html, which is the ready‑to‑use embed code.

  • Place an HTML element on the page.
  • Set its content to the API call’s html field.

 

<!-- In the HTML element inside Bubble -->
<div>
  {{Get oEmbed's html}}  <!-- dynamic expression -->
</div>

 

Typical flow inside Bubble

 

  • User inputs a SoundCloud URL.
  • Workflow triggers the API call (or use it directly as a Data Source).
  • You display the returned html in an HTML element.

This gives you a working SoundCloud player, responsive, no plugins needed, and no OAuth workflow required.

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