Skip to main content

/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

ParameterTypeDescriptionMandatory
eanstringGet the enriched product information for a specific product idfalse
page_indexintegerDefault 0; page indexfalse
page_sizeintegerDefault 50; page sizefalse

Request Headers

HeaderValue
AuthorizationBearer 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"
}