Endpoint Playground
Test Crawlora's Get an Adidas store 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/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Adidas store id, from a stores response's stores[].id field |
{
"code": 200,
"data": {
"address_line": "sample",
"city": "sample",
"country_code": "sample",
"description": "sample",
"fetched_at": "sample",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"opening_hours": [
{
"day": "sample",
"from": "sample",
"status": "ok",
"to": "sample"
}
],
"phone": "sample",
"postal_code": "sample",
"services": [
{
"name": "sample",
"type": "sample"
}
],
"source_url": "https://example.com/resource",
"status": "ok",
"store_id": "sample-id",
"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.
Returns normalized detail for one Adidas retail store: name, status, phone, description, full address, coordinates, opening hours, and in-store services (e.g. Click and Collect, Free Wi-Fi). store_id is the numeric Adidas store id, taken from an adidas-stores response's stores[].id field. An unknown store_id returns a not-found error.
{
"code": 200,
"data": {
"address_line": "sample",
"city": "sample",
"country_code": "sample",
"description": "sample",
"fetched_at": "sample",
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"opening_hours": [
{
"day": "sample",
"from": "sample",
"status": "ok",
"to": "sample"
}
],
"phone": "sample",
"postal_code": "sample",
"services": [
{
"name": "sample",
"type": "sample"
}
],
"source_url": "https://example.com/resource",
"status": "ok",
"store_id": "sample-id",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/adidas/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"