Endpoint Playground
Test Crawlora's Ulta Beauty Store Locator 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/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Free-text zip code, city, or address to resolve to coordinates | |
| lat | number | No | Latitude, requires lng | |
| lng | number | No | Longitude, requires lat | |
| radius_meters | integer | No | Search radius in meters, 1000 to 50000, defaults to 25000 |
{
"code": 200,
"msg": "OK",
"data": {
"search": "60601",
"lat": 41.885769,
"lng": -87.624599,
"radius_meters": 25000,
"count": 1,
"stores": [
{
"id": 2806899,
"slug": "chicago-il-1357",
"name": "Ulta Beauty",
"phone": "+1 312-527-9045",
"address": "430 North Michigan Avenue",
"city": "Chicago",
"state": "IL",
"postal_code": "60611",
"country": "US",
"latitude": 41.8903696,
"longitude": -87.6247778,
"is_permanently_closed": false,
"services": [
"Hair Services",
"Brow Services",
"Makeup Services"
],
"hours": {
"Mon": "09:00-21:00",
"Sun": "10:00-20:00"
},
"url": "https://www.ulta.com/stores/chicago-il-1357"
}
]
}
}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 Ulta Beauty physical retail store locations near a point: name, phone, full address, hours, services, and coordinates. Either search, or both lat and lng, is required. search is a free-text zip code, city, or address that is first resolved to coordinates; if it does not resolve to any location, a well-formed empty result is returned rather than an error. lat and lng, when given directly, skip that resolution step. radius_meters is optional (1000 to 50000, defaults to 25000). A location with no stores within the radius returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"search": "60601",
"lat": 41.885769,
"lng": -87.624599,
"radius_meters": 25000,
"count": 1,
"stores": [
{
"id": 2806899,
"slug": "chicago-il-1357",
"name": "Ulta Beauty",
"phone": "+1 312-527-9045",
"address": "430 North Michigan Avenue",
"city": "Chicago",
"state": "IL",
"postal_code": "60611",
"country": "US",
"latitude": 41.8903696,
"longitude": -87.6247778,
"is_permanently_closed": false,
"services": [
"Hair Services",
"Brow Services",
"Makeup Services"
],
"hours": {
"Mon": "09:00-21:00",
"Sun": "10:00-20:00"
},
"url": "https://www.ulta.com/stores/chicago-il-1357"
}
]
}
}curl "https://api.crawlora.net/api/v1/ulta/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"