Get Product by ID
curl GET /api/v1/products/:id
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| id | string | Product ID |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| include_raw_data | boolean | Include raw html/json data from pdp (default: false) |
Response Object
{
"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 }
}
}
}
}