Endpoint Playground
Test Crawlora's Find nearby Adidas 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/adidas/stores?lat=<lat>&lng=<lng>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Latitude, -90 to 90 | |
| lng | number | Yes | Longitude, -180 to 180 | |
| page | integer | No | Zero-based page number, defaults to 0 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"page": 1,
"source_url": "https://example.com/resource",
"stores": [
{
"city": "sample",
"distance_miles": 1.23,
"features": [
"sample"
],
"id": "sample-id",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"opening_hours": [
{
"closed": true,
"day": "sample",
"end": "sample",
"start": "sample"
}
],
"phone": "sample",
"street": "sample"
}
],
"total": 1
},
"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 Adidas physical retail stores nearest to a coordinate, sourced from Adidas's own store-finder API: name, address, phone, coordinates, distance in miles, opening hours, and in-store feature flags. lat and lng are both required. Adidas's upstream ignores a caller-supplied radius and returns the nearest ~20 stores ordered by distance. A location with no stores returns an empty list rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"lat": 1.23,
"lng": 1.23,
"page": 1,
"source_url": "https://example.com/resource",
"stores": [
{
"city": "sample",
"distance_miles": 1.23,
"features": [
"sample"
],
"id": "sample-id",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"opening_hours": [
{
"closed": true,
"day": "sample",
"end": "sample",
"start": "sample"
}
],
"phone": "sample",
"street": "sample"
}
],
"total": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/adidas/stores?lat=<lat>&lng=<lng>" \
-H "x-api-key: $CRAWLORA_API_KEY"