Sephora API endpoint
Use Crawlora's Sephora product search API to extract supported public Sephora data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/sephora/searchSearches Sephora's product catalog by keyword, with real page-based pagination. Returns normalized products with brand, pricing, rating, and review count. Sephora's own search never returns a genuine zero-result state for a nonempty keyword -- an unrecognized/nonsense keyword still returns a full, unrelated fallback result set rather than an empty one. price_min/price_max must be provided together (whole dollars) -- upstream silently ignores a one-sided price range rather than filtering or erroring, so this endpoint rejects a one-sided range as invalid instead of passing it through. brand and filter each accept multiple values (OR'd together within the same facet); brand/rating_min/is_new/filter/price_min/price_max can all be combined with each other (AND'd together across different facets). Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| query | string | Yes | Search keyword | ||
| page | integer | No | 1 | Result page, 1-based, defaults to 1 | |
| page_size | integer | No | 60 | Results per page, 1 to 100, defaults to 60 | |
| sort_by | string | No | featured | Sort order, defaults to featured Allowed values: featured, top_rated, new, best_selling, price_low_to_high, price_high_to_low | |
| price_min | integer | No | Minimum price in whole dollars; must be set together with price_max | ||
| price_max | integer | No | Maximum price in whole dollars; must be set together with price_min | ||
| brand | array | No | One or more exact brand names to filter to (OR'd together); repeat the param for multiple values | ||
| rating_min | integer | No | Minimum star rating, 1 to 4 | ||
| is_new | boolean | No | When true, filters to products flagged New | ||
| filter | array | No | Additional facet:value filters, repeat the param for multiple; facet must be one of: benefits, ingredientpreferences, colorfamily, formulation, size, shoppingpreferences, agerange, skintype, finish, skinconcerns, coverage, hairtype, hairconcerns, hairtexture | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/sephora/search?query=coffee&page=1&sort_by=featured&is_new=true" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Sephora's own search never returns a genuine zero-result state for a nonempty keyword -- an unrecognized/nonsense keyword still returns a full, unrelated fallback result set rather than an empty one. `total_products` and `count` reflect whatever the upstream actually returned. - `list_price`/`value_price` are kept as Sephora's own display-formatted strings (e.g. `"$16.00 - $30.00"`) since a search card's price is often a range across a product's own color/shade variants -- only `/sephora/product` (scoped to one specific product) exposes fully resolved per-variant pricing. - `related_searches` lists Sephora's own suggested related keywords, when present. Example response: ```json { "code": 200, "msg": "OK", "data": { "query": "mascara", "page": 1, "page_size": 60, "sort_by": "featured", "total_products": 180, "count": 2, "related_searches": ["foundation", "highlighter"], "products": [ { "product_id": "P520769", "sku_id": "2948230", "brand_name": "tarte", "product_name": "Mini Shape Tape Concealer + Tubing Mascara Set", "list_price": "$25.00", "value_price": "$30.00", "rating": 5, "review_count": 2, "more_colors": 8, "image_url": "https://www.sephora.com/productimages/sku/s2948230-main-zoom.jpg", "url": "https://www.sephora.com/product/travel-size-shape-tape-tubing-set-P520769?skuId=2948230" }, { "product_id": "P446676", "sku_id": "1234567", "brand_name": "Lancôme", "product_name": "Lash Idôle Lengthening & Volumizing Mascara", "list_price": "$29.00", "rating": 4.5, "review_count": 9021, "sponsored": true, "image_url": "https://www.sephora.com/productimages/sku/s1234567-main-zoom.jpg", "url": "https://www.sephora.com/product/lash-idole-P446676" } ], "source_url": "https://www.sephora.com/api/v2/catalog/search/?...", "fetched_at": "2026-08-15T12:00:00Z" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"query": "mascara",
"page": 1,
"page_size": 60,
"sort_by": "featured",
"total_products": 180,
"count": 2,
"related_searches": [
"foundation",
"highlighter"
],
"products": [
{
"product_id": "P520769",
"sku_id": "2948230",
"brand_name": "tarte",
"product_name": "Mini Shape Tape Concealer + Tubing Mascara Set",
"list_price": "$25.00",
"value_price": "$30.00",
"rating": 5,
"review_count": 2,
"more_colors": 8,
"image_url": "https://www.sephora.com/productimages/sku/s2948230-main-zoom.jpg",
"url": "https://www.sephora.com/product/travel-size-shape-tape-tubing-set-P520769?skuId=2948230"
},
{
"product_id": "P446676",
"sku_id": "1234567",
"brand_name": "Lancôme",
"product_name": "Lash Idôle Lengthening & Volumizing Mascara",
"list_price": "$29.00",
"rating": 4.5,
"review_count": 9021,
"sponsored": true,
"image_url": "https://www.sephora.com/productimages/sku/s1234567-main-zoom.jpg",
"url": "https://www.sephora.com/product/lash-idole-P446676"
}
],
"source_url": "https://www.sephora.com/api/v2/catalog/search/?...",
"fetched_at": "2026-08-15T12:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/sephora.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | sephora.SearchResponse | No | ||||
| data.brand | array | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.filter | array | No | ||||
| data.is_new | boolean | No | ||||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 60 | |||
| data.price_max | integer | No | 30 | |||
| data.price_min | integer | No | 15 | |||
| data.products | array | No | ||||
| data.products[].brand_name | string | No | tarte | |||
| data.products[].image_url | string | No | ||||
| data.products[].list_price | string | No | $25.00 | |||
| data.products[].more_colors | integer | No | ||||
| data.products[].product_id | string | No | P520769 | |||
| data.products[].product_name | string | No | ||||
| data.products[].rating | number | No | 4.5 | |||
| data.products[].review_count | integer | No | ||||
| data.products[].sku_id | string | No | ||||
| data.products[].sponsored | boolean | No | ||||
| data.products[].url | string | No | ||||
| data.products[].value_price | string | No | ||||
| data.query | string | No | mascara | |||
| data.rating_min | integer | No | 4 | |||
| data.related_searches | array | No | ||||
| data.sort_by | string | No | featured | |||
| data.source_url | string | No | ||||
| data.total_products | integer | No | 180 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/sephora/search?query=coffee&page=1&sort_by=featured&is_new=true" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms