> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/rest-apis/chatbot/sequence-bot/branch/get-single-branch.md).

# Get Single Branch

## Get Single Branch

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/bot/seq/branch/{{id}}`

Retrieve the details of a single branch. The bran

#### Path Parameters

| Name                                 | Type    | Description   |
| ------------------------------------ | ------- | ------------- |
| id<mark style="color:red;">\*</mark> | integer | The branch Id |

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer {{api\_key}} |

{% tabs %}
{% tab title="200 " %}

```
{
  "data": {
    "branch": {
      "id": 926,
      "title": "Demo Branch",
      "visibleOrder": 8,
      "position": {
        "x": 22,
        "y": 30
      },
      "isParent": "no",
      "leadEdges": [
        {
          "id": 1628,
          "type": "auto_followup",
          "typeVal": null,
          "followupFalsefallback": "Hello from Bot!",
          "followupFalsefallbackJson": null,
          "visibleOrder": 0,
          "leadEdgeActions": [],
          "leadEdgeBubbles": []
        }
      ]
    }
  }
}

```

{% endtab %}
{% endtabs %}
