Skip to main content
GET
/
ecommerce
/
v2
/
apps
/
{app_id}
/
branches
/
{branch_id}
curl "https://gateway.jelou.ai/ecommerce/v2/apps/{app_id}/branches/{branch_id}?include=products" \
  -H "x-api-key: YOUR_API_KEY"
{
  "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",
    "products": []
  }
}
app_id
string
required
Your store ID in Jelou Shop.
branch_id
string
required
The branch ID.
include
string
Use products to include the branch’s products in the response.
curl "https://gateway.jelou.ai/ecommerce/v2/apps/{app_id}/branches/{branch_id}?include=products" \
  -H "x-api-key: YOUR_API_KEY"
{
  "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",
    "products": []
  }
}
The products array only appears when you send include=products. The products_count value is available on the list and search endpoints, not on this one.