# Workflow API endpoints

<details>

<summary>Help us improve this article</summary>

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](https://docs.google.com/forms/d/e/1FAIpQLSfe7eaYVxkqTa_nn3QE6VObCxWB1hgh6sHUQGQ0Eit8JlAS7g/viewform?usp=pp_url\&entry.619913899=https://manual.bubble.io/help-guides/apis-connect-to-other-apps/the-bubble-api/the-workflow-api/workflow-api-endpoints\&entry.80834677=Workflow+API+endpoints)

</details>

## The root URL

To find your application's Workflow API root URL, go to *Settings - API*.&#x20;

<figure><img src="https://34394582-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M5sbzwG7CljeZdkntrL%2Fuploads%2FfHlMmESlz4YRLlVllWiM%2Fenable-workflow-api-bubble.png?alt=media&#x26;token=5f0db313-e018-4234-bf11-d4321ea6aded" alt=""><figcaption><p>As soon as you have activated the Workflow API Bubble will reveal the root URL.</p></figcaption></figure>

## Constructing the complete URL

{% hint style="info" %}
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.
{% endhint %}

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

<figure><img src="https://34394582-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-M5sbzwG7CljeZdkntrL%2Fuploads%2FDj5GL68pqSt0qfIUG1zO%2Fapi-workflow-name-label.png?alt=media&#x26;token=f188e08b-f374-49c9-90fc-3f50c9196715" alt=""><figcaption></figcaption></figure>

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

### No domain connected

```url
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

```url
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
```
