Get Product by ID

curl GET /api/v1/products/:id

Retrieve a product by its ID.

Path Parameters

ParameterTypeDescription
idstringProduct ID

Query Parameters

ParameterTypeDescription
include_raw_databooleanInclude 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 }
            }
        }
    }
}