Retrieve a product using query parameter filters. We currently only support filtering a product by the URL of it’s brand product details page (PDP).
curl GET /api/v1/products?url={url}
Retrieve a product by its URL.
Parameter | Type | Description |
---|---|---|
url | string | The product URL to fetch |
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 }
}
}
}
}