Endpoint Playground
Test Crawlora's Find nearby Kohl's store locations 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/kohls/stores?search=<search>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | Yes | Free-text location: city/state, zip code, or address |
{
"code": 200,
"msg": "OK",
"data": {
"search": "Seattle, WA",
"count": 13,
"stores": [
{
"id": "1152",
"name": "Kohl's Tukwila",
"address": "17150 SOUTHCENTER PKWY",
"city": "TUKWILA",
"state": "WA",
"postal_code": "98188",
"country": "US",
"phone": "(206) 394-0078",
"distance_miles": 11.3,
"latitude": 47.450079,
"longitude": -122.2581113,
"hours": [
{
"day": "Sunday",
"open": "09:00",
"close": "20:00"
},
{
"day": "Monday",
"open": "09:00",
"close": "21:00"
}
],
"badges": [
"Sephora",
"Baby Gifting Shop",
"Kids Room Shop"
],
"services": [
"In-Store Pickup",
"Wifi Enabled"
],
"url": "https://www.kohls.com/stores/wa/tukwila-1152.shtml"
}
],
"source_url": "https://maps.kohlslocal.com/api/getAsyncLocations?...",
"fetched_at": "2026-08-12T10: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 physical Kohl's store locations near a free-text location (city/state, zip code, or address): address, phone, weekly hours, distance, and store badges/services. A search with no results returns a genuine empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"search": "Seattle, WA",
"count": 13,
"stores": [
{
"id": "1152",
"name": "Kohl's Tukwila",
"address": "17150 SOUTHCENTER PKWY",
"city": "TUKWILA",
"state": "WA",
"postal_code": "98188",
"country": "US",
"phone": "(206) 394-0078",
"distance_miles": 11.3,
"latitude": 47.450079,
"longitude": -122.2581113,
"hours": [
{
"day": "Sunday",
"open": "09:00",
"close": "20:00"
},
{
"day": "Monday",
"open": "09:00",
"close": "21:00"
}
],
"badges": [
"Sephora",
"Baby Gifting Shop",
"Kids Room Shop"
],
"services": [
"In-Store Pickup",
"Wifi Enabled"
],
"url": "https://www.kohls.com/stores/wa/tukwila-1152.shtml"
}
],
"source_url": "https://maps.kohlslocal.com/api/getAsyncLocations?...",
"fetched_at": "2026-08-12T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kohls/stores?search=<search>" \
-H "x-api-key: $CRAWLORA_API_KEY"