Endpoint Playground
Test Crawlora's Browse an Ulta Beauty category page 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/ulta/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Ulta category path or URL | |
| filter | string | No | Guided-navigation facet code(s), comma-joined for multiple | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "shop/skin-care/cleansers",
"page": 1,
"page_size": 64,
"count": 2,
"result_count": 1161,
"has_more": true,
"products": [
{
"product_id": "xlsImpprod5140065",
"sku_id": "2254420",
"brand_name": "CeraVe",
"product_name": "Foaming Facial Cleanser",
"list_price": "$5.99 - $18.99",
"rating": 4.6,
"review_count": 19250,
"variant_label": "4 sizes",
"image_url": "https://media.ultainc.com/i/ulta/2254420",
"url": "https://www.ulta.com/p/foaming-facial-cleanser-xlsImpprod5140065?sku=2254420"
}
],
"facets": [
{
"label": "Combination Skin Type",
"value": "SKIN_TYPE--COMBINATION"
},
{
"label": "On Sale",
"value": "SPECIAL_OFFER--SALE"
}
],
"source_url": "https://www.ulta.com/dxl/graphql?...",
"fetched_at": "2026-08-11T10: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.
Browses an Ulta Beauty category page's product grid, with real page-based pagination and the category's own guided-navigation refinement options. category accepts a category path or full URL copied from Ulta's own site navigation (e.g. shop/makeup/eyes/mascara). filter narrows results using Ulta's own guided-navigation facet-code shape (e.g. BENEFIT--WATERPROOF, or a comma-joined combination of codes) -- discover valid codes for a category from that category's own response facets field, whose value is ready to use directly as this parameter. An unrecognized category returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"category": "shop/skin-care/cleansers",
"page": 1,
"page_size": 64,
"count": 2,
"result_count": 1161,
"has_more": true,
"products": [
{
"product_id": "xlsImpprod5140065",
"sku_id": "2254420",
"brand_name": "CeraVe",
"product_name": "Foaming Facial Cleanser",
"list_price": "$5.99 - $18.99",
"rating": 4.6,
"review_count": 19250,
"variant_label": "4 sizes",
"image_url": "https://media.ultainc.com/i/ulta/2254420",
"url": "https://www.ulta.com/p/foaming-facial-cleanser-xlsImpprod5140065?sku=2254420"
}
],
"facets": [
{
"label": "Combination Skin Type",
"value": "SKIN_TYPE--COMBINATION"
},
{
"label": "On Sale",
"value": "SPECIAL_OFFER--SALE"
}
],
"source_url": "https://www.ulta.com/dxl/graphql?...",
"fetched_at": "2026-08-11T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/ulta/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"