Endpoint Playground
Test Crawlora's Get a Gucci store's detail 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/store?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Store slug, from gucci-stores' own slug field |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "900-north-michigan-avenue",
"name": "Chicago Flagship",
"phone": "+13126645504",
"street_address": "900 North Michigan Avenue",
"city": "Chicago",
"region": "Illinois",
"postal_code": "60611",
"country": "US",
"opening_hours": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"opens": "10:00",
"closes": "19:00"
},
{
"days": [
"Sunday"
],
"opens": "12:00",
"closes": "18:00"
}
],
"images": [
"https://www.gucci.com/_ui/responsive/theme-gucci/images/stores/StoreDetailStandard_default-01_001_Default.jpg"
],
"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 one Gucci store's full detail: name, phone, address, opening hours, and photos. slug comes from gucci-stores' own slug field.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "900-north-michigan-avenue",
"name": "Chicago Flagship",
"phone": "+13126645504",
"street_address": "900 North Michigan Avenue",
"city": "Chicago",
"region": "Illinois",
"postal_code": "60611",
"country": "US",
"opening_hours": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"opens": "10:00",
"closes": "19:00"
},
{
"days": [
"Sunday"
],
"opens": "12:00",
"closes": "18:00"
}
],
"images": [
"https://www.gucci.com/_ui/responsive/theme-gucci/images/stores/StoreDetailStandard_default-01_001_Default.jpg"
],
"url": "https://www.gucci.com/us/en/store/900-north-michigan-avenue"
}
}curl "https://api.crawlora.net/api/v1/gucci/store?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"