Endpoint Playground
Test Crawlora's Find nearby H&M 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/hm/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Free-text zip code or place name to resolve to coordinates | |
| lat | number | No | Latitude, requires lng | |
| lng | number | No | Longitude, requires lat | |
| radius_meters | integer | No | Search radius in meters, 1000 to 50000, defaults to 10000 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"radius_meters": 1,
"search": "sample",
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"country": "sample",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"postal_code": "sample",
"state": "sample",
"store_class": "sample",
"store_code": "sample"
}
]
},
"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 H&M physical retail store locations near a point: name, phone, full address, and coordinates. Either search, or both lat and lng, is required. search is a free-text zip code or place name that is first resolved to coordinates; if it does not resolve to any location, a well-formed empty result is returned rather than an error. lat and lng, when given directly, skip that resolution step. radius_meters is optional (1000 to 50000, defaults to 10000). A location with no stores within the radius returns a well-formed empty result rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"radius_meters": 1,
"search": "sample",
"source_url": "https://example.com/resource",
"stores": [
{
"address": "sample",
"city": "sample",
"country": "sample",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"phone": "sample",
"postal_code": "sample",
"state": "sample",
"store_class": "sample",
"store_code": "sample"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hm/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"