/v1/data/products/enriched
GET /v1/data/products/enriched
Summary
This API can be used to get enriched product data. The product data is enriched with product_title, product_description and product_metadescription. The product data is enriched with an AI model.
Query Parameters
Parameter | Type | Description | Mandatory |
---|---|---|---|
ean | string | Get the enriched product information for a specific product id | false |
page_index | integer | Default 0; page index | false |
page_size | integer | Default 50; page size | false |
Request Headers
Header | Value |
---|---|
Authorization | Bearer API_TOKEN |
Responses
401
: Unauthorized Response
200
: Successful Response
The successful response returns JSON with the following structure:
{
"data": [
{
"product_ean": "",
"product_id": "",
"product_mpn": "",
"product_title": "",
"product_description": "",
"product_metadescription": ""
}
],
"total_records": 1,
"message": "Get enriched products",
"status": "OK"
}