Skip to main content
All CollectionsUser ManualIntegrationsAPI
Bubble API: Workflow API - Endpoints
Bubble API: Workflow API - Endpoints

This article covers how to identify the correct endpoint for a given API Workflow.

Jeff Thill avatar
Written by Jeff Thill
Updated over 3 weeks ago

The root URL

To find your application's Workflow API root URL, go to Settings - API.

As soon as you have activated the Workflow API Bubble will reveal the root URL.

Constructing the complete URL

Keep in mind that each branch in your app (including custom branches) have a separate root URL. The Main branch always has the ID version-test. Remember to update the external call to reflect which branch you want to send the request to.

The complete endpoint URL consists of the root URL combined with the name of the Workflow you want to access.

For example, the URL of the API Workflow in the image above would be:

No domain connected

https://my-bubble-application.bubbleapps.io/version-test/api/1.1/wf/url-friendly-name

or for Live:

https://my-bubble-application.bubbleapps.io/api/1.1/wf/url-friendly-name

Domain connected

https://www.mydomain.com/version-test/api/1.1/wf/url-friendly-name

or for Live:

https://www.mydomain.com/api/1.1/wf/url-friendly-name
Did this answer your question?