Endpoint Playground
Test Crawlora's Locate Prada retail 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/prada/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | No | Free-text location search (city, country, or store name) | |
| lat | number | No | Search-center latitude, -90..90. Requires lng. | |
| lng | number | No | Search-center longitude, -180..180. Requires lat. | |
| radius_km | number | No | Search radius in kilometers around lat/lng, defaults to 50, maximum 20000. Requires lat and lng. | |
| limit | integer | No | Maximum stores returned, defaults to 20, maximum 50 | |
| offset | integer | No | Result offset for pagination, defaults to 0 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "New York",
"limit": 20,
"offset": 0,
"count": 5,
"total_results": 5,
"fetched_at": "2026-09-10T01:17:14Z",
"stores": [
{
"id": "S306",
"name": "Prada New York Broadway",
"line1": "575, Broadway",
"city": "New York",
"region": "NY",
"postal_code": "10012",
"country": "US",
"phone": "+12123274200",
"latitude": 40.7245596,
"longitude": -73.9978072,
"timezone": "America/New_York",
"permanently_closed": false,
"categories": [
"Women's ready to wear",
"Men's ready to wear",
"Leather goods and accessories"
],
"services": [
"Private appointment",
"Made to Measure",
"Made to order"
],
"hours": [
{
"day": "monday",
"start": "10:00",
"end": "18:00"
},
{
"day": "tuesday",
"start": "10:00",
"end": "18:00"
},
{
"day": "wednesday",
"start": "10:00",
"end": "18:00"
},
{
"day": "thursday",
"start": "10:00",
"end": "18:00"
},
{
"day": "friday",
"start": "10:00",
"end": "18:00"
},
{
"day": "saturday",
"start": "10:00",
"end": "18:00"
},
{
"day": "sunday",
"start": "12:00",
"end": "17: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.
Locates Prada's (prada.com) physical retail stores worldwide, through its own public store-locator search. All parameters are optional: with none set, this returns Prada's full worldwide store list (up to limit). query is a free-text location search (city, country, or store name); lat/lng (both required together) narrow it to a geo-radius search, optionally sized with radius_km (defaults to 50, maximum 20000). A search with genuinely zero matches returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "New York",
"limit": 20,
"offset": 0,
"count": 5,
"total_results": 5,
"fetched_at": "2026-09-10T01:17:14Z",
"stores": [
{
"id": "S306",
"name": "Prada New York Broadway",
"line1": "575, Broadway",
"city": "New York",
"region": "NY",
"postal_code": "10012",
"country": "US",
"phone": "+12123274200",
"latitude": 40.7245596,
"longitude": -73.9978072,
"timezone": "America/New_York",
"permanently_closed": false,
"categories": [
"Women's ready to wear",
"Men's ready to wear",
"Leather goods and accessories"
],
"services": [
"Private appointment",
"Made to Measure",
"Made to order"
],
"hours": [
{
"day": "monday",
"start": "10:00",
"end": "18:00"
},
{
"day": "tuesday",
"start": "10:00",
"end": "18:00"
},
{
"day": "wednesday",
"start": "10:00",
"end": "18:00"
},
{
"day": "thursday",
"start": "10:00",
"end": "18:00"
},
{
"day": "friday",
"start": "10:00",
"end": "18:00"
},
{
"day": "saturday",
"start": "10:00",
"end": "18:00"
},
{
"day": "sunday",
"start": "12:00",
"end": "17:00"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/prada/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"