Endpoint Playground
Test Crawlora's Sephora search suggestions API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/sephora/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search keywords |
{
"code": 200,
"msg": "OK",
"data": {
"query": "masc",
"terms": [
{
"term": "mascara"
},
{
"term": "mascara smudge proof"
}
],
"products": [
{
"product_id": "P431750",
"sku_id": "2850378",
"brand_name": "ILIA",
"product_name": "Limitless Lash Mascara - Clean Lengthening Mascara",
"rating": 4.1361,
"review_count": 7773,
"image_url": "https://www.sephora.com/productimages/sku/s2850378-main-thumb-50.jpg"
}
],
"categories": [
{
"name": "Mascara",
"url": "https://www.sephora.com/shop/mascara"
}
],
"source_url": "https://www.sephora.com/api/v2/catalog/search/?...",
"fetched_at": "2026-08-15T12:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Sephora's own search-box type-ahead suggestions for a partial keyword: keyword-completion terms, matching products, and trending/related categories. Sephora's own upstream never returns a genuine zero-result state for a nonempty query -- a deliberately nonsense query still returns unrelated product suggestions.
{
"code": 200,
"msg": "OK",
"data": {
"query": "masc",
"terms": [
{
"term": "mascara"
},
{
"term": "mascara smudge proof"
}
],
"products": [
{
"product_id": "P431750",
"sku_id": "2850378",
"brand_name": "ILIA",
"product_name": "Limitless Lash Mascara - Clean Lengthening Mascara",
"rating": 4.1361,
"review_count": 7773,
"image_url": "https://www.sephora.com/productimages/sku/s2850378-main-thumb-50.jpg"
}
],
"categories": [
{
"name": "Mascara",
"url": "https://www.sephora.com/shop/mascara"
}
],
"source_url": "https://www.sephora.com/api/v2/catalog/search/?...",
"fetched_at": "2026-08-15T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sephora/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"