curl --request GET \
--url http://localhost:3000/v1/scraped-products/{id}{
"product": {
"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>",
"is_organic": true,
"is_gluten_free": true,
"is_vegan": true,
"sellable_product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"selling_price": 123,
"is_active": true,
"is_rfc_item": true,
"category_name": "<string>",
"subcategory_name": "<string>"
},
"retailer_availability": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"retailer_name": "<string>",
"retailer_logo": "<string>",
"location_name": "<string>",
"is_in_stock": true,
"is_available": true,
"fulfillment_channel": "<string>",
"last_seen_at": "<string>"
}
]
}
}Get detailed information about a scraped product including retailer availability
curl --request GET \
--url http://localhost:3000/v1/scraped-products/{id}{
"product": {
"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>",
"is_organic": true,
"is_gluten_free": true,
"is_vegan": true,
"sellable_product": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"selling_price": 123,
"is_active": true,
"is_rfc_item": true,
"category_name": "<string>",
"subcategory_name": "<string>"
},
"retailer_availability": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"retailer_name": "<string>",
"retailer_logo": "<string>",
"location_name": "<string>",
"is_in_stock": true,
"is_available": true,
"fulfillment_channel": "<string>",
"last_seen_at": "<string>"
}
]
}
}