cURL
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 }
List products with pagination, optional filtering and text search (catalog only, no prices).
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
1 <= x <= 200
Successful Response
List of products matching the filter criteria
Show child attributes
Total number of products matching the filter
Current page number (1-based)
Number of products per page