Endpoint Playground
Test Crawlora's Find Target stores near a location 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/target/stores?place=<place>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place | string | Yes | ZIP code, city/state, or latitude,longitude | |
| limit | integer | No | Maximum stores to return (1-20) | |
| within | integer | No | Search radius in miles (1-5000) |
{
"code": 200,
"msg": "OK",
"data": {
"place": "95014",
"count": 1,
"source_url": "https://redsky.target.com/redsky_aggregations/v1/web/nearby_stores_v1?include_capabilities=true&limit=20&place=95014&within=100",
"fetched_at": "2026-09-15T10:00:00Z",
"stores": [
{
"store_id": "323",
"name": "Cupertino De Anza Blvd",
"status": "Open",
"distance_miles": 2.62,
"phone": "408-725-2651",
"address_line1": "20745 Stevens Creek Blvd",
"city": "Cupertino",
"state": "CA",
"postal_code": "95014-2123",
"country": "US",
"time_zone": "PST",
"services": [
"Wine, Beer & Spirits Available",
"Drive Up",
"Shipt Delivery",
"Fresh Grocery",
"Starbucks Cafe"
],
"hours": [
{
"date": "2026-09-15",
"day_name": "Tuesday",
"is_open": true,
"open_time": "07:00:00",
"close_time": "23:00:00"
}
]
}
]
}
}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 Target's physical stores near a ZIP code, a free-text "city, state", or a "latitude,longitude" pair, including each store's store_id, status, distance, phone, address, service list, time zone, and two weeks of daily opening hours. Use the returned store_id values with the store_id parameter on target-search, target-category-products, target-filter-options, and target-product.
{
"code": 200,
"msg": "OK",
"data": {
"place": "95014",
"count": 1,
"source_url": "https://redsky.target.com/redsky_aggregations/v1/web/nearby_stores_v1?include_capabilities=true&limit=20&place=95014&within=100",
"fetched_at": "2026-09-15T10:00:00Z",
"stores": [
{
"store_id": "323",
"name": "Cupertino De Anza Blvd",
"status": "Open",
"distance_miles": 2.62,
"phone": "408-725-2651",
"address_line1": "20745 Stevens Creek Blvd",
"city": "Cupertino",
"state": "CA",
"postal_code": "95014-2123",
"country": "US",
"time_zone": "PST",
"services": [
"Wine, Beer & Spirits Available",
"Drive Up",
"Shipt Delivery",
"Fresh Grocery",
"Starbucks Cafe"
],
"hours": [
{
"date": "2026-09-15",
"day_name": "Tuesday",
"is_open": true,
"open_time": "07:00:00",
"close_time": "23:00:00"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/target/stores?place=<place>" \
-H "x-api-key: $CRAWLORA_API_KEY"