Endpoint Playground
Test Crawlora's List Gucci 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/gucci/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | No | Department tag to filter to (case-insensitive substring match against the response's own departments field), e.g. jewelry, mens_shoes. Omit for every store. |
{
"code": 200,
"msg": "OK",
"data": {
"country": "us",
"count": 94,
"departments": [
"jewelry",
"mens_bags",
"mens_shoes",
"watches",
"womens_bags",
"womens_shoes"
],
"stores": [
{
"store_code": "266",
"slug": "900-north-michigan-avenue",
"name": "Chicago Flagship",
"type": "flagship",
"address": "900 North Michigan Avenue",
"city": "Chicago, Illinois, 60611, United States",
"phone": "+13126645504",
"latitude": 41.8998,
"longitude": -87.6244,
"departments": [
"jewelry",
"mens_bags",
"watches"
],
"book_appointment_url": "https://www.gucci.com/web/baa/us/en/store/23042",
"url": "https://www.gucci.com/us/en/store/900-north-michigan-avenue"
}
]
}
}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 Gucci's full US store-locator listing: name, address, phone, coordinates, product departments carried, and a link to book an in-store appointment for each location. Filter to stores carrying one department with department (e.g. jewelry, mens_shoes); omit for every store -- see the response's own departments field for the live list of department tags to filter by.
{
"code": 200,
"msg": "OK",
"data": {
"country": "us",
"count": 94,
"departments": [
"jewelry",
"mens_bags",
"mens_shoes",
"watches",
"womens_bags",
"womens_shoes"
],
"stores": [
{
"store_code": "266",
"slug": "900-north-michigan-avenue",
"name": "Chicago Flagship",
"type": "flagship",
"address": "900 North Michigan Avenue",
"city": "Chicago, Illinois, 60611, United States",
"phone": "+13126645504",
"latitude": 41.8998,
"longitude": -87.6244,
"departments": [
"jewelry",
"mens_bags",
"watches"
],
"book_appointment_url": "https://www.gucci.com/web/baa/us/en/store/23042",
"url": "https://www.gucci.com/us/en/store/900-north-michigan-avenue"
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"