Endpoint Playground
Test Crawlora's List Balenciaga 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/balenciaga/stores?country=AE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | Yes | AE | Two-letter country code |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"store_count": 31,
"cities": [
"Atlanta",
"Austin",
"Beverly Hills"
],
"stores": [
{
"id": "83014",
"name": "Santa Clara - Westfield Valley Fair",
"address1": "2855 Stevens Creek Blvd, Suite 1235",
"city": "Santa Clara",
"state": "California",
"postal_code": "95050",
"country_code": "US",
"country": "United States of America",
"phone": "+1 408 572 8020",
"latitude": 37.326542,
"longitude": -121.94536,
"status": "Active",
"closed": false,
"availability": true,
"appointments": true,
"reserve_in_store": true,
"pickup": true
}
]
}
}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 Balenciaga's public physical-store directory for one country, including addresses, coordinates, phone numbers, opening hours, and store-service flags. Use balenciaga-store-countries to discover the complete accepted country enum.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"store_count": 31,
"cities": [
"Atlanta",
"Austin",
"Beverly Hills"
],
"stores": [
{
"id": "83014",
"name": "Santa Clara - Westfield Valley Fair",
"address1": "2855 Stevens Creek Blvd, Suite 1235",
"city": "Santa Clara",
"state": "California",
"postal_code": "95050",
"country_code": "US",
"country": "United States of America",
"phone": "+1 408 572 8020",
"latitude": 37.326542,
"longitude": -121.94536,
"status": "Active",
"closed": false,
"availability": true,
"appointments": true,
"reserve_in_store": true,
"pickup": true
}
]
}
}curl "https://api.crawlora.net/api/v1/balenciaga/stores?country=<country>" \
-H "x-api-key: $CRAWLORA_API_KEY"