Retrieve a specific product using either ID.
curl GET /api/v1/products/:id
Retrieve a product by its ID.
Parameter | Type | Description |
---|---|---|
id | string | Product ID |
Parameter | Type | Description |
---|---|---|
include_raw_data | boolean | Include raw html/json data from pdp (default: false) |
{
"pdp": {
"id": string,
"url": string,
"name": string,
"desc": string,
"media": [
{
"url": string,
"type": string
}
],
"brands": [string],
"price_label": string,
"raw_data": {
"strippedHtml": string,
"jsons": {
"ld_json": { data },
"props_data": { data }
}
}
}
}