List products
List products in the catalog, optionally filtered by brand or active status. Results are paginated; page through with ?page=2&page_size=50. Sorting via ?ordering=product_name or ?ordering=-created (descending).
Authorizations
Query Parameters
Limit results to products belonging to the brand with this URL-safe short identifier.
When true, return only currently-active products (resolver-enabled and not retired). When false, return only inactive products. Omit to return both.
Sort field; prefix with - for descending order. Allowed: product_name, created.
Page number (1-indexed).
x >= 1Number of items per page (max 100).
1 <= x <= 100Response
OK
Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.
Pagination envelope describing position within the full result set.
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}