Endpoint Playground
Test Crawlora's Find nearby Zara physical stores 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/zara/stores?lat=<lat>&lng=<lng>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Latitude | |
| lng | number | Yes | Longitude | |
| radius | integer | No | Search radius in miles, 1 to 500, defaults to 30 | |
| pickup_only | boolean | No | Only return stores that support in-store pickup | |
| donation_only | boolean | No | Only return stores that accept clothing donations |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"radius": 1,
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"commercial_name": "sample",
"country": "sample",
"donation_allowed": true,
"id": 1,
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"pickup_allowed": true,
"postal_code": "sample",
"sections": [
"sample"
],
"state": "sample",
"status": "ok",
"type": "sample",
"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.
Returns Zara physical retail stores near a location: name, full address, phone, coordinates, opening hours status, pickup/donation eligibility, and a canonical store page URL. lat and lng are both required -- this endpoint does not accept a free-text zip/city search. A location with no stores within the radius returns a normal response with an empty stores array rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"radius": 1,
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"commercial_name": "sample",
"country": "sample",
"donation_allowed": true,
"id": 1,
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"pickup_allowed": true,
"postal_code": "sample",
"sections": [
"sample"
],
"state": "sample",
"status": "ok",
"type": "sample",
"url": "https://example.com/resource"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zara/stores?lat=<lat>&lng=<lng>" \
-H "x-api-key: $CRAWLORA_API_KEY"