> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get branch

> Get the details of a specific branch.

<ParamField path="app_id" type="string" required>
  Your store ID in Jelou Shop.
</ParamField>

<ParamField path="branch_id" type="string" required>
  The branch ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://gateway.jelou.ai/ecommerce/v2/apps/{app_id}/branches/{branch_id}" \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": {
      "id": "9e3f2c1a-8b7d-4e6f-a5c4-d3b2a1e0f9c8",
      "name": "Downtown Branch",
      "code": "SUC-CENTRO",
      "address": "Av. Principal 123, Quito",
      "phone": "+593991234567",
      "status": true,
      "properties": {
        "language": "en",
        "horario": "09:00 - 18:00"
      },
      "created_at": "2026-02-19T15:30:00.000000Z",
      "updated_at": "2026-02-19T15:30:00.000000Z"
    }
  }
  ```
</ResponseExample>

<Note>
  The `products_count` value is available on the [list](/en/guides/integraciones/e-commerce/api-sucursales/listar) and [search](/en/guides/integraciones/e-commerce/api-sucursales/buscar) endpoints, not on this one.
</Note>
