Endpoint Playground
Test Crawlora's Sephora product detail 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/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Full Sephora product-page slug |
{
"code": 200,
"msg": "OK",
"data": {
"product_group_id": "P420652",
"name": "Lip Sleeping Mask – Intense Hydration Lip Treatment with Vitamin C",
"description": "Shop LANEIGE's Lip Sleeping Mask at Sephora.",
"brand": "LANEIGE",
"category": "lip-balm-lip-care",
"image": "https://www.sephora.com/productimages/sku/s2961324-main-hero.jpg",
"url": "https://www.sephora.com/product/lip-sleeping-mask-P420652",
"rating": 4.32,
"review_count": 22324,
"variants": [
{
"sku": "2961324",
"name": "Lip Sleeping Mask - Acai Mango Smoothie",
"color": "Acai Mango Smoothie",
"image": "https://www.sephora.com/productimages/sku/s2961324-main-hero.jpg",
"price": "25.00",
"currency_code": "USD",
"availability": "InStock"
},
{
"sku": "2743243",
"name": "Lip Sleeping Mask - Watermelon Pop",
"color": "Watermelon Pop",
"price": "24.00",
"currency_code": "USD",
"availability": "OutOfStock"
}
],
"review_sample": [
{
"id": "400508718",
"author": "megankiers",
"title": "Love this!!!",
"body": "This is my favorite product I've got at Sephora!",
"rating": 5,
"date_published": "2026-08-15"
}
],
"source_url": "https://www.sephora.com/product/lip-sleeping-mask-P420652",
"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 one Sephora product's full detail (every color/shade variant with its own price and availability, rating, review count, and a sample of recent reviews), from Sephora's credential-free public JSON-LD. `product_id` is the full product-page slug, e.g. `lip-sleeping-mask-P420652` -- copy it from the path segment after sephora.com/product/ on any product page; unlike some other retailers, an arbitrary or partial slug does not resolve.
{
"code": 200,
"msg": "OK",
"data": {
"product_group_id": "P420652",
"name": "Lip Sleeping Mask – Intense Hydration Lip Treatment with Vitamin C",
"description": "Shop LANEIGE's Lip Sleeping Mask at Sephora.",
"brand": "LANEIGE",
"category": "lip-balm-lip-care",
"image": "https://www.sephora.com/productimages/sku/s2961324-main-hero.jpg",
"url": "https://www.sephora.com/product/lip-sleeping-mask-P420652",
"rating": 4.32,
"review_count": 22324,
"variants": [
{
"sku": "2961324",
"name": "Lip Sleeping Mask - Acai Mango Smoothie",
"color": "Acai Mango Smoothie",
"image": "https://www.sephora.com/productimages/sku/s2961324-main-hero.jpg",
"price": "25.00",
"currency_code": "USD",
"availability": "InStock"
},
{
"sku": "2743243",
"name": "Lip Sleeping Mask - Watermelon Pop",
"color": "Watermelon Pop",
"price": "24.00",
"currency_code": "USD",
"availability": "OutOfStock"
}
],
"review_sample": [
{
"id": "400508718",
"author": "megankiers",
"title": "Love this!!!",
"body": "This is my favorite product I've got at Sephora!",
"rating": 5,
"date_published": "2026-08-15"
}
],
"source_url": "https://www.sephora.com/product/lip-sleeping-mask-P420652",
"fetched_at": "2026-08-15T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/sephora/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"