Endpoint Playground
Test Crawlora's Old Navy 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/oldnavy/stores?brand=on" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Zip code or city to search near | |
| lat | number | No | Latitude (must be given together with lng) | |
| lng | number | No | Longitude (must be given together with lat) | |
| brand | string | No | on | Storefront to search |
{
"code": 200,
"data": {
"brand": "sample",
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"search": "sample",
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"country": "sample",
"distance_miles": 1.23,
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"postal_code": "sample",
"region": "sample",
"specialties": [
"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.
Searches physical store locations for one storefront by free-text search (zip code or city) and/or coordinates. Provide search, or both lat and lng. Select the storefront with the brand parameter (`on` for Old Navy, `gap` for Gap, `br` for Banana Republic, `at` for Athleta; defaults to `on`). Returns each nearby store's name, full address, phone number, coordinates, distance, and specialties (e.g. "In-Store Shopping", "Outlet"). This is location search only -- it does not report per-item, per-store stock levels; use oldnavy-product-availability for that.
{
"code": 200,
"data": {
"brand": "sample",
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"search": "sample",
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"country": "sample",
"distance_miles": 1.23,
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"postal_code": "sample",
"region": "sample",
"specialties": [
"sample"
],
"url": "https://example.com/resource"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/oldnavy/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"