curl --request POST \
--url https://storefront.glood.ai/api/storefront/v3/headless/recommendations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-shop: <x-shop>' \
--data '
{
"queries": [
{
"id": "<string>",
"recommendation_type": "bought_together",
"product_ids": [
123
],
"view": "product_details",
"max_recommendations": 25,
"creation_type": "manual"
}
],
"client_id": "<string>",
"user_id": "<string>",
"customer_id": "<string>"
}
'