Skip to main content
GET
/
api
/
v1
/
apps
/
{app_id}
/
products
curl "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?limit=15" \
  -H "Authorization: Bearer <API_KEY>"
{
  "data": [
    {
      "id": "8af29efb-9864-4f29-888c-b2dd0d7ac1dd",
      "sku": "MM-0002",
      "name": "3 in 1 Cloth Book Set",
      "description": "Set of 3 soft cloth books ideal for babies.",
      "price": 50,
      "price_without_tax": 50,
      "tax": "0.00",
      "has_tax": true,
      "discount_type": null,
      "discount": null,
      "status": true,
      "type": "physical_product",
      "stock_type": "limited",
      "stock_value": 0,
      "branch_id": null,
      "modifier_groups": [],
      "created_at": "2026-02-27T02:24:33.000000Z",
      "updated_at": "2026-02-27T02:34:44.000000Z"
    },
    {
      "id": "c09b6094-5b0a-4c6a-b24c-4f4c42e83295",
      "sku": "MM-0003",
      "name": "3 In 1 Play Mat - Pet's Party",
      "description": "3-in-1 play mat with a pet party theme.",
      "price": 5,
      "price_without_tax": 5,
      "tax": "0.00",
      "has_tax": true,
      "discount_type": "percentage",
      "discount": "20.00",
      "status": true,
      "type": "physical_product",
      "stock_type": "limited",
      "stock_value": 0,
      "branch_id": null,
      "modifier_groups": [],
      "created_at": "2026-02-27T02:24:33.000000Z",
      "updated_at": "2026-02-27T02:34:45.000000Z"
    }
  ],
  "links": {
    "first": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=1",
    "last": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=19",
    "prev": null,
    "next": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 19,
    "per_page": 15,
    "to": 15,
    "total": 276
  }
}
app_id
string
required
Your store ID in Jelou Shop.
limit
integer
default:"15"
Number of products per page (max. 200).
page
integer
default:"1"
Page number to query.

Response fields

Each product in data contains the following fields:
FieldTypeDescription
idstringProduct UUID
skustringUnique product identifier
namestringProduct name
descriptionstringProduct description
pricenumberProduct price
price_without_taxnumberPrice without taxes
taxstringTax amount
has_taxbooleanWhether the product has taxes
discount_typestring | nullDiscount type: "value" or "percentage"
discountstring | nullDiscount value
statusbooleanWhether the product is active
typestringProduct type (e.g., "physical_product")
stock_typestringStock type: "limited" or "unlimited"
stock_valuenumberAvailable stock quantity
branch_idstring | nullUUID of the assigned branch
modifier_groupsarrayProduct modifier groups
created_atstringCreation date
updated_atstringLast update date
The response includes pagination in the links and meta objects:
FieldDescription
meta.current_pageCurrent page
meta.last_pageLast available page
meta.per_pageProducts per page
meta.totalTotal number of products
links.nextURL of the next page
links.prevURL of the previous page
curl "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?limit=15" \
  -H "Authorization: Bearer <API_KEY>"
{
  "data": [
    {
      "id": "8af29efb-9864-4f29-888c-b2dd0d7ac1dd",
      "sku": "MM-0002",
      "name": "3 in 1 Cloth Book Set",
      "description": "Set of 3 soft cloth books ideal for babies.",
      "price": 50,
      "price_without_tax": 50,
      "tax": "0.00",
      "has_tax": true,
      "discount_type": null,
      "discount": null,
      "status": true,
      "type": "physical_product",
      "stock_type": "limited",
      "stock_value": 0,
      "branch_id": null,
      "modifier_groups": [],
      "created_at": "2026-02-27T02:24:33.000000Z",
      "updated_at": "2026-02-27T02:34:44.000000Z"
    },
    {
      "id": "c09b6094-5b0a-4c6a-b24c-4f4c42e83295",
      "sku": "MM-0003",
      "name": "3 In 1 Play Mat - Pet's Party",
      "description": "3-in-1 play mat with a pet party theme.",
      "price": 5,
      "price_without_tax": 5,
      "tax": "0.00",
      "has_tax": true,
      "discount_type": "percentage",
      "discount": "20.00",
      "status": true,
      "type": "physical_product",
      "stock_type": "limited",
      "stock_value": 0,
      "branch_id": null,
      "modifier_groups": [],
      "created_at": "2026-02-27T02:24:33.000000Z",
      "updated_at": "2026-02-27T02:34:45.000000Z"
    }
  ],
  "links": {
    "first": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=1",
    "last": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=19",
    "prev": null,
    "next": "https://ecommerce.jelou.ai/api/v1/apps/{app_id}/products?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 19,
    "per_page": 15,
    "to": 15,
    "total": 276
  }
}
Replace {app_id} with your store ID and <API_KEY> with the token provided by Jelou.