Number of APIs: 3
1. Get list of products by category ID and page and limit
GET {{baseUrl}}/products/category/:id/limit/:limit/page/:page
Service urls:
http://yourdomain.com/api/rest/products/category/{category_id}/limit/{limit}/page/{page}
OR
http://yourdomain.com/index.php?route=feed/rest_api/products&category={category_id}&limit={limit}&page={page}
2. Get list of products by category filters
GET {{baseUrl}}/products/category/:id/filters/:filters
Get list of products by filters.If you load categories you will get category filters in the response.
Service urls:
http://yourdomain.com/api/rest/products/category/{category_id}/filters/{filters}
OR
http://yourdomain.com/index.php?route=feed/rest_api/products&category={category_id}&filters={filters}
3. Get list of products by category ID
GET {{baseUrl}}/products/category/:id
Service urls:
http://yourdomain.com/api/rest/products/category/{category_id}
OR
http://yourdomain.com/index.php?route=feed/rest_api/products&category={category_id}
ENDPOINTS