Endpoint Playground
Test Crawlora's List Moncler boutiques 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/moncler/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "US06",
"name": "Moncler Los Angeles",
"latitude": 34.0685563,
"longitude": -118.4019107,
"address": "340 North Rodeo Drive",
"city": "Beverly Hills",
"postal_code": "90210-5106",
"state_code": "California",
"country_code": "US",
"country_name": "United States of America",
"phone": "+1 4243544562",
"email": "losangeles@moncler.com",
"store_type": "Flagship",
"region": "North America",
"hours": [
{
"day": "Monday - Saturday",
"text": "11:00-19:00"
},
{
"day": "Sunday",
"text": "12:00-18:00"
}
],
"hours_schedule": [
{
"day": "MON",
"is_closed": false,
"slots": [
{
"start": "11:00",
"end": "19:00"
}
]
}
]
}
]
}
}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 Moncler's full worldwide boutique list: name, coordinates, address, phone, email, opening hours, store type, and in-store service flags. This is the full list, not geo-filtered -- filter by country_code or proximity to coordinates client-side over the returned list.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "US06",
"name": "Moncler Los Angeles",
"latitude": 34.0685563,
"longitude": -118.4019107,
"address": "340 North Rodeo Drive",
"city": "Beverly Hills",
"postal_code": "90210-5106",
"state_code": "California",
"country_code": "US",
"country_name": "United States of America",
"phone": "+1 4243544562",
"email": "losangeles@moncler.com",
"store_type": "Flagship",
"region": "North America",
"hours": [
{
"day": "Monday - Saturday",
"text": "11:00-19:00"
},
{
"day": "Sunday",
"text": "12:00-18:00"
}
],
"hours_schedule": [
{
"day": "MON",
"is_closed": false,
"slots": [
{
"start": "11:00",
"end": "19:00"
}
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/moncler/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"