Skip to main content
GET
/
api
/
v1
/
catalog
/
products
List Products
curl --request GET \
  --url https://api.example.com/api/v1/catalog/products \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "sku": "<string>",
      "name": "<string>",
      "brand": "<string>",
      "category_path": "<string>",
      "unit": "<string>",
      "price": 123,
      "is_active": true
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:50
Required range: 1 <= x <= 200
category
string | null
brand
string | null
search
string | null
is_active
boolean | null

Response

Successful Response

items
ProductListItem · object[]
required

List of products matching the filter criteria

total
integer
required

Total number of products matching the filter

page
integer
required

Current page number (1-based)

limit
integer
required

Number of products per page