Guide results ⏏️
Get search results and search filters for the latest step of a given search.
It can be called at the end of the guide (when there is no question left) but can also be called any time during the guided search.
If called regularly, it is recommended to activate the pagination mechanism by providing a page number - starting at 1. Default slice page is 25, but it can be refined with the slice parameter.
GET
/navigation/guide/{search_id}/{locale}/results
curl \
-X GET https://api.ppe-analytics.com/api/v1/navigation/guide/2e254ef2-3e63-4cb2-9680-3876b68e7191/it/results \
-H "PPEApiKey: $API_KEY"
Response examples (200)
{
"status": "OK",
"result": {
"context": {
"step": 4,
"locale": "fr",
"search_id": "2e254ef2-3e63-4cb2-9680-3876b68e7191",
"product_count": 50,
"api_refine_guide": "/api/v1/navigation/guide/2e254ef2-3e63-4cb2-9680-3876b68e7191/fr/follow/current?choice_key=_refine_",
"custom_pictos_only": true
},
"filters": [
{
"key": "colour",
"name": "Couleur",
"values": [
{
"key": "white",
"name": "Blanc",
"picto_url": "https://app.ppe-analytics.com/static/pictures/300/head-protection/89e6848c8f1f91404c224393340b1fad.jpg"
},
{
"key": "black",
"name": "Noir",
"picto_url": "https://app.ppe-analytics.com/static/pictures/300/head-protection/89e6848c8f1f91404c224393340b1fad.jpg"
}
],
"picto_url": "https://app.ppe-analytics.com/static/pictures/300/head-protection/89e6848c8f1f91404c224393340b1fad.jpg",
"segment_key": "head-protection",
"query_string": "colour~white_black",
"combination_mode": "or"
}
],
"products": [
{
"id": "f50938a24830edb8b1c2ecc3f7dd88a3",
"name": "Awesome light 123",
"level": "single",
"segment_key": "head-protection",
"manufacturer": "petzl",
"api_get_product": "/api/v1/product/lightening/f50938a24830edb8b1c2ecc3f7dd88a3",
"main_picture_url": "https://app.ppe-analytics.com/static/pictures/300/lightening/f50938a24830edb8b1c2ecc3f7dd88a3.jpg",
"product_page_url": "https://my-website.it/lightening/f50938a24830edb8b1c2ecc3f7dd88a3"
},
{
"id": "89e6848c8f1f91404c224393340b1fad",
"name": "Awesome helmet 1234",
"level": "variant",
"segment_key": "head-protection",
"manufacturer": "jsp",
"api_get_product": "/api/v1/product/head-protection/89e6848c8f1f91404c224393340b1fad",
"main_picture_url": "https://app.ppe-analytics.com/static/pictures/300/head-protection/89e6848c8f1f91404c224393340b1fad.jpg",
"product_page_url": "https://my-website.it/head-protection/89e6848c8f1f91404c224393340b1fad"
}
]
}
}