API: List products
GET /api/marketplace/v2/products/
Specification
A paginated list of your kogan products.
Synchronous
This API is synchronous, and will return the body directly in the HTTP response.
Pagination
By default the API paginates by 20 products at a time. To get more, size parameter can increase the page size up to 200.
To get the next page, follow the URL in the “body.next” field.
Filters
search
: Search product titlessku
: Find a product by SKU. Exact match only.enabled
: Filter to enabled or disabled products only.- Accepted values:
True
,true
,1
,False
,false
,0
- Accepted values:
category
: Filter down to a specific Kogan category, by title. Full match only (case insensitive).brand
: Filter down to a specific brand title. Case insensitive.created_after
: Only show products created after a specific date. ISO formatted dates, eg:2020-09-27
.created_before
: Only show products created before a specific date. ISO formatted dates, eg:2020-09-27
.detail
: By default, only a few fields are returned. use true to show all fields.
Updated about 4 years ago