Endpoint Playground
Test Crawlora's Search Ulta Beauty products 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"page": 1,
"page_size": 1,
"products": [
{
"brand_name": "sample",
"discount": "sample",
"image_url": "https://example.com/resource",
"is_limited_stock": true,
"list_price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"promo_text": "sample",
"rating": 1.23,
"review_count": 1,
"sale_price": "sample",
"sku_id": "sample-id",
"sponsored": true,
"url": "https://example.com/resource",
"variant_label": "sample"
}
],
"query": "sample",
"result_count": 1,
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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.
Searches Ulta Beauty's product catalog by keyword, with real page-based pagination. Returns normalized products with brand, pricing, rating, and review count. An unrecognized/nonsense keyword returns a genuine empty result rather than a fallback set. Requesting a page beyond the available results returns a normal, empty result rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"page": 1,
"page_size": 1,
"products": [
{
"brand_name": "sample",
"discount": "sample",
"image_url": "https://example.com/resource",
"is_limited_stock": true,
"list_price": "sample",
"product_id": "sample-id",
"product_name": "sample",
"promo_text": "sample",
"rating": 1.23,
"review_count": 1,
"sale_price": "sample",
"sku_id": "sample-id",
"sponsored": true,
"url": "https://example.com/resource",
"variant_label": "sample"
}
],
"query": "sample",
"result_count": 1,
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ulta/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"