Skip to main content
POST
/
api
/
v2
/
apps
/
{app_id}
/
branches
/
search
curl -X POST "https://ecommerce.jelou.ai/api/v2/apps/{app_id}/branches/search?page=1&limit=20" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "search": {
      "value": "downtown",
      "case_sensitive": false
    },
    "filters": [
      { "field": "status", "operator": "=", "value": true }
    ],
    "includes": [
      { "relation": "products" }
    ]
  }'

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.

app_id
string
required
Your store ID in Jelou Shop.
page
integer
default:"1"
Page number to return.
limit
integer
default:"15"
Number of results per page (max. 100).
Text search object.
filters
object[]
List of filters to apply.
includes
object[]
List of relations to expand in the response.
curl -X POST "https://ecommerce.jelou.ai/api/v2/apps/{app_id}/branches/search?page=1&limit=20" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "search": {
      "value": "downtown",
      "case_sensitive": false
    },
    "filters": [
      { "field": "status", "operator": "=", "value": true }
    ],
    "includes": [
      { "relation": "products" }
    ]
  }'
Searchable fields: name, code Filterable fields: status, code Available relations: products