Endpoint Playground
Test Crawlora's Sephora storefront categories 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/categories?department=new" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | No | new | Filter to one storefront department |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.sephora.com/",
"fetched_at": "2026-09-15T12:00:00Z",
"categories": [
{
"department": "makeup",
"name": "All Makeup",
"slug": "makeup-cosmetics"
},
{
"department": "makeup",
"name": "Eye",
"slug": "eye-makeup"
},
{
"department": "makeup",
"group": "Eye",
"name": "Mascara",
"slug": "mascara"
},
{
"department": "gifts-value-sets",
"name": "Gifts Under $25",
"slug": "gifts-under-25"
}
]
}
}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 live storefront category navigation (department, group, name, and slug for each), sourced from the site's own "Shop" mega-nav. Each entry's slug is directly usable as GET /sephora/category's own `slug` query parameter.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.sephora.com/",
"fetched_at": "2026-09-15T12:00:00Z",
"categories": [
{
"department": "makeup",
"name": "All Makeup",
"slug": "makeup-cosmetics"
},
{
"department": "makeup",
"name": "Eye",
"slug": "eye-makeup"
},
{
"department": "makeup",
"group": "Eye",
"name": "Mascara",
"slug": "mascara"
},
{
"department": "gifts-value-sets",
"name": "Gifts Under $25",
"slug": "gifts-under-25"
}
]
}
}curl "https://api.crawlora.net/api/v1/sephora/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"