curl --request GET \
--url http://localhost:3000/v1/scraped-products{
"products": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"brand": "<string>",
"description": "<string>",
"image_url": "<string>",
"barcode": "<string>",
"size": "<string>",
"size_uom": "<string>",
"is_active": true,
"full_category_hierarchy": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"sellable_product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"selling_price": 123,
"is_active": true
},
"has_sellable_product": true,
"has_description": true,
"has_image": true,
"has_size": true,
"has_barcode": true,
"has_category": true,
"has_retailer_mappings": true,
"has_pricing": true,
"retailer_mappings_count": 123,
"pricing_records_count": 123
}
],
"total": 123
}List scraped products with filtering, pagination, and field completeness filters
curl --request GET \
--url http://localhost:3000/v1/scraped-products{
"products": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"brand": "<string>",
"description": "<string>",
"image_url": "<string>",
"barcode": "<string>",
"size": "<string>",
"size_uom": "<string>",
"is_active": true,
"full_category_hierarchy": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"sellable_product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"selling_price": 123,
"is_active": true
},
"has_sellable_product": true,
"has_description": true,
"has_image": true,
"has_size": true,
"has_barcode": true,
"has_category": true,
"has_retailer_mappings": true,
"has_pricing": true,
"retailer_mappings_count": 123,
"pricing_records_count": 123
}
],
"total": 123
}Number of items to return
1 <= x <= 10025
Number of items to skip
x >= 00
Search query
200"organic milk"
Category filter
"Dairy"
Subcategory filter
"Milk"
Active status filter
true, false, all Has sellable product filter
true, false, all Has description filter
true, false, all Has image filter
true, false, all Has size filter
true, false, all Has barcode filter
true, false, all Has category filter
true, false, all Has retailer mappings filter
true, false, all Has pricing filter
true, false, all