Sephora API
Sephora API returns live Sephora data as clean JSON for sephora The primary endpoint, search, returns product results including product id, sku id, name, brand and price.
🤖 Using an AI assistant? Copy this link into ChatGPT / Claude / Cursor — it reads every endpoint and parameter instantly and tells you if this API fits your use case.
Developers reach for it when they need to validate, enrich, classify and normalize operational data without maintaining one-off scraping code or separate API contracts. If you were about to build or fix a Sephora scraper, this API is the maintained alternative — it returns the same data as clean JSON, with the proxies, rotation and anti-bot handling already solved. This page covers the live example, request shape, response shape and available actions: search, price, product_detail. Every request uses the same ReefAPI envelope, one API key and one shared credit pool, so it fits alongside the rest of your data stack.
Real request and response JSON
Captured from the indexed primary action, search, on .
{
"method": "POST",
"url": "https://api.reefapi.com/sephora/v1/search",
"headers": {
"x-api-key": "$REEF_KEY",
"content-type": "application/json"
},
"body": {
"query": "mascara",
"max_results": 30
}
}{
"ok": true,
"meta": {
"api": "sephora",
"endpoint": "search",
"mode": "live",
"latency_ms": 2929.1,
"record_count": 30,
"bytes": 101517,
"cache_hit": false,
"completeness_pct": 100,
"stop_reason": "limit_reached",
"method": "internal_json_api",
"pagination": {
"page": 1,
"per_page": 60,
"total_results": 181,
"pages_fetched": 1,
"returned": 30,
"has_more": true,
"next_page": 2
},
"filters": {
"applied": [],
"note": null
},
"sort": "relevance"
},
"data": {
"products": [
{
"product_id": "P467208",
"sku_id": "2417145",
"name": "[redacted-name]",
"brand": "Lancôme",
"url": "https://www.sephora.com/product/lancome-lash-idole-lash-lifting-volumizing-mascara-P467208?skuId=2417145",
"price": 16,
"price_max": 30,
"price_display": "$16.00 - $30.00",
"currency": "USD",
"on_sale": false,
"on_sale_label": null,
"rating": 4.5014,
"review_count": 10755,
"variant_count": 2,
"image": "https://www.sephora.com/productimages/sku/s2417145-main-zoom.jpg?imwidth=270",
"images": [
{
"url": "[trimmed-depth]",
"url_250": "[trimmed-depth]",
"alt": "[trimmed-depth]"
}
],
"is_sponsored": false,
"is_new": false,
"is_bestseller": true,
"is_limited_edition": false,
"is_limited_time_offer": false,
"is_online_only": false,
"is_sephora_exclusive": false,
"is_app_exclusive": false,
"ships_to_home": false,
"same_day_eligible": false,
"next_day_eligible": false,
"store_pickup_eligible": false
},
{
"product_id": "P502484",
"sku_id": "2606176",
"name": "[redacted-name]",
"brand": "Tower 28 Beauty",
"url": "https://www.sephora.com/product/makewaves-lengthening-curling-clean-mascara-P502484?skuId=2606176",
"price": 12,
"price_max": 20,
"price_display": "$12.00 - $20.00",
"currency": "USD",
"on_sale": false,
"on_sale_label": null,
"rating": 3.8206,
"review_count": 2960,
"variant_count": 2,
"image": "https://www.sephora.com/productimages/sku/s2606176-main-zoom.jpg?imwidth=270&pb=allure-2022-bestofbeauty-badge",
"images": [
{
"url": "[trimmed-depth]",
"url_250": "[trimmed-depth]",
"alt": "[trimmed-depth]"
}
],
"is_sponsored": false,
"is_new": false,
"is_bestseller": true,
"is_limited_edition": false,
"is_limited_time_offer": false,
"is_online_only": false,
"is_sephora_exclusive": true,
"is_app_exclusive": false,
"ships_to_home": false,
"same_day_eligible": false,
"next_day_eligible": false,
"store_pickup_eligible": false
},
{
"product_id": "P431750",
"sku_id": "2850378",
"name": "[redacted-name]",
"brand": "ILIA",
"url": "https://www.sephora.com/product/limitless-lash-mascara-P431750?skuId=2850378",
"price": 17,
"price_max": 29,
"price_display": "$17.00 - $29.00",
"currency": "USD",
"on_sale": false,
"on_sale_label": null,
"rating": 4.2088,
"review_count": 5383,
"variant_count": 2,
"image": "https://www.sephora.com/productimages/sku/s2850378-main-zoom.jpg?imwidth=270&pb=clean-at-sephora",
"images": [
{
"url": "[trimmed-depth]",
"url_250": "[trimmed-depth]",
"alt": "[trimmed-depth]"
}
],
"is_sponsored": false,
"is_new": false,
"is_bestseller": true,
"is_limited_edition": false,
"is_limited_time_offer": false,
"is_online_only": false,
"is_sephora_exclusive": false,
"is_app_exclusive": false,
"ships_to_home": false,
"same_day_eligible": false,
"next_day_eligible": false,
"store_pickup_eligible": false
}
],
"search": {
"keyword": "mascara",
"total_results": 181,
"engine": "NLP",
"categories": [
{
"name": "Makeup",
"category_id": "cat140006",
"level": 0,
"product_count": 178
},
{
"name": "[redacted-name]",
"category_id": "cat3780034",
"level": 0,
"product_count": 28
},
{
"name": "Gifts",
"category_id": "cat60270",
"level": 0,
"product_count": 15
}
],
"related_searches": [
"concealer",
"highlighter",
"lip liner"
]
},
"facets": [
{
"name": "[redacted-name]",
"type": "checkboxesWithDropDown",
"values": [
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
},
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
}
]
},
{
"name": "[redacted-name]",
"type": "range",
"values": [
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
},
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
},
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
}
]
},
{
"name": "Brand",
"type": "checkboxes",
"values": [
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
},
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
},
{
"label": "[trimmed-depth]",
"query_fragment": "[trimmed-depth]",
"status": "[trimmed-depth]"
}
]
}
]
}
}What the Sephora API does
| Action | Description | Concrete use case | Key params |
|---|---|---|---|
| search | Search the Sephora catalog. Give a `query` ('mascara', 'vitamin c serum', 'dior lipstick', 'rare beauty blush') and get back 60 products per page, each with Sephora's own product id and default SKU id, brand, price (both ends when Sephora quotes a range), sale flag, star rating, review count, how many shades the product has, the image set, and Sephora's own merchandising flags (bestseller, new, limited edition, Sephora exclusive, same-day/pickup eligibility). Narrow by price band, sort by rating, price or newest. The live facet vocabulary Sephora publishes for your query comes back in `facets`, and the category counts and its own related searches come with it. | Ops teams call search to search the Sephora catalog. | query, max_results, page, sort, price_min, ... |
| price | Re-check ONE shade's price and stock, cheaply. Give it the Sephora SKU id you already hold and it returns the current price, the regular price, whether that shade is in stock and whether Sephora is flagging it as nearly gone — and nothing else: no description, images, ingredients, shade matrix or reviews. Built for refreshing a catalogue you already have rather than discovering products. It reads Sephora's own SKU-scoped route instead of the whole product document, so it costs a fraction of `product_detail` — measured live on ten products in ten categories: 7.9-14.3 KB against 59.9-421.5 KB for a full `product_detail` (5.2x-45.9x), or 32.5-350.5 KB with its reviews switched off (2.9x-38.1x). The saving grows with the shade count, because the product document carries every sibling shade and this one carries yours. `sku_id` is REQUIRED, because Sephora prices and stocks each shade and size separately: a 49-shade foundation had 9 shades sold out while the product was on sale, so a product-level answer would be right about the product and wrong about the shade you are actually selling. | Developer tools call price to get re-check ONE shade's price and stock, cheaply. | sku_id, product_id, url |
| product_detail | Get one Sephora product in full, by its product id (or its sephora.com URL). One call returns: the complete image gallery; the complete variant matrix — one row per shade/size with Sephora's own SKU id, that variant's price, sale price, in-stock flag, low-stock flag, swatch, image and URL; the specification set Sephora publishes (size, the structured attribute map — coverage, finish, formulation, skin type, skin concerns, ingredient preferences —, the highlight badges with their explanations, the full ingredient list and the how-to-use copy); the brand with its id and page; availability and price range; the star rating with its distribution; and the top customer reviews with their full text, titles, dates, helpfulness votes, reviewer skin-tone/skin-type/eye/age context and photos. It also returns the product's UPC/EAN barcodes, which Sephora's own product API does not publish anywhere. | Validation workflows call product_detail to get one Sephora product in full, by its product id (or its sephora.com URL). | product_id, url, sku_id, include_reviews, reviews_limit, ... |
Call search from your stack
curl -X POST https://api.reefapi.com/sephora/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"query":"mascara","max_results":30}'import requests
r = requests.post(
"https://api.reefapi.com/sephora/v1/search",
headers={"x-api-key": REEF_KEY},
json={
"query": "mascara",
"max_results": 30
},
)
print(r.json()["data"])const res = await fetch("https://api.reefapi.com/sephora/v1/search", {
method: "POST",
headers: {
"x-api-key": process.env.REEF_KEY,
"content-type": "application/json",
},
body: JSON.stringify({
"query": "mascara",
"max_results": 30
}),
});
const { ok, data, meta, error } = await res.json();Ask your MCP-connected assistant: call reefapi.sephora.search with {"query":"mascara","max_results":30}.Who uses this API and why
- Ops teams use Sephora to search the Sephora catalog.
- Developer tools use Sephora to get re-check ONE shade's price and stock, cheaply.
- Validation workflows use Sephora to get one Sephora product in full, by its product id (or its sephora.com URL).
Questions developers ask before integrating
What is the Sephora API?
Sephora API is a ReefAPI endpoint group for sephora It returns live JSON through POST requests under /sephora/v1.
Is the Sephora API free to try?
Yes. ReefAPI starts with 1,000 free credits, no card required. Sephora calls use the same shared credit balance as every other ReefAPI engine.
Do I need a Sephora login or account?
No login to Sephora is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.
How fresh is the Sephora data?
The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.
How many credits does the Sephora API use?
Sephora actions currently cost 1-2 credits per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.
Can I call Sephora from an AI assistant or MCP client?
Yes. Connect ReefAPI once through MCP and your assistant can call sephora actions with the same key, credit pool and JSON envelope used by normal REST requests.
Is the Sephora API a Sephora scraper?
It is the managed alternative to a DIY Sephora scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same sephora back as clean JSON.
Why does my Sephora scraper keep getting blocked?
Most Sephora scrapers break on anti-bot defenses, rate limits and IP bans that need rotating residential proxies and browser fingerprinting to clear. ReefAPI handles all of that for you — no proxies, no captchas, no maintenance — and returns live JSON. Blocked or failed calls are free.