POST
Get recommendation products
Returns a list of product recommendations based on the user’s skin type and selected skin concerns.
Parameters
appIdstring
Skin Analysis application identifier. This ties the request to a specific app configuration (features, report config, recommendation catalog, etc.).
Request body
skinTypestring
The user's skin type used to rank/filter recommendations (e.g., oily/dry/combination—whatever values your enum supports).
concernsarray of string
A list of skin concerns selected by the user. The API uses these to choose and rank products. Array length: min 1, max 3.
POST/sa-predictions/apps/{appId}/recommendation
curl -X POST "https://api.pixelbin.io/service/private/misc/v2.0/sa-predictions/apps/{appId}/recommendation" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {accesskey}" \
-d '{"skinType":"combination","concerns":["hydration","dark_circles","post_acne_scars"]}'
Response
201
No example available.