Endpoint Playground
Test Crawlora's J.Crew 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/jcrew/stores?site=jcrew" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| site | string | No | jcrew | Storefront whose stores to return |
| lat | number | No | Latitude to sort distance from (must be given together with lng) | |
| lng | number | No | Longitude to sort distance from (must be given together with lat) |
{
"code": 200,
"msg": "OK",
"data": {
"site": "jcrew",
"count": 114,
"stores": [
{
"id": "731",
"name": "1035 Madison Ave",
"address": "1035 Madison Ave",
"city": "New York",
"region": "NY",
"postal_code": "10075",
"country": "US",
"phone": "+13323343487",
"latitude": 40.7764377,
"longitude": -73.9618084,
"services": [
"Women's",
"Collection",
"In-Store Pickup",
"Same Day Delivery"
],
"hours": {
"monday": {
"open_intervals": [
{
"start": "10:00",
"end": "19:00"
}
]
},
"sunday": {
"open_intervals": [
{
"start": "11:00",
"end": "18: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 one storefront's full open-store directory (address, phone, coordinates, services, weekly hours). site selects the storefront and accepts jcrew or factory; defaults to jcrew. Give lat and lng together to sort by distance from that point (each store's distance_miles is then populated); omit both for the upstream's own order.
{
"code": 200,
"msg": "OK",
"data": {
"site": "jcrew",
"count": 114,
"stores": [
{
"id": "731",
"name": "1035 Madison Ave",
"address": "1035 Madison Ave",
"city": "New York",
"region": "NY",
"postal_code": "10075",
"country": "US",
"phone": "+13323343487",
"latitude": 40.7764377,
"longitude": -73.9618084,
"services": [
"Women's",
"Collection",
"In-Store Pickup",
"Same Day Delivery"
],
"hours": {
"monday": {
"open_intervals": [
{
"start": "10:00",
"end": "19:00"
}
]
},
"sunday": {
"open_intervals": [
{
"start": "11:00",
"end": "18:00"
}
]
}
}
}
]
}
}curl "https://api.crawlora.net/api/v1/jcrew/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"