Workflow API endpoints

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

Help us improve this article

This article is part of a significant update to the Bubble manual and your feedback is critical to our efforts to continuously enhance our written documentation. We would greatly appreciate if you could take a moment to let us know your thoughts on the quality of it. Thank you for your support! Give feedback on this article

The root URL

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

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

Last updated