Endpoint Playground
Test Crawlora's Get a Moncler product'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/moncler/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Product or master id |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "L20911A53600689509990",
"master_id": "L20911A5360068950",
"name": "Moncler Maya Hooded Short Down Jacket",
"brand": "Moncler",
"price": 1995,
"currency": "USD",
"short_description": "Emblematic of Moncler's DNA...",
"color": "999",
"composition": "EXTERIOR: 100% Polyamide / Nylon; PADDING: 90% Down, 10% Feather",
"care_instructions": "Wash max 30°C - Mild process; Do not bleach...",
"made_in": "Made in Romania",
"gender": "Men",
"collection": "Archivio",
"in_stock": true,
"stock_level": 16,
"product_url": "https://example.com/moncler-maya-hooded-short-down-jacket-black-L20911A53600689509990.html",
"variation_attributes": [
{
"id": "color",
"label": "Color",
"values": [
{
"value": "999",
"label": "Black",
"orderable": true
}
]
},
{
"id": "size",
"label": "Size",
"values": [
{
"value": "0",
"label": "0",
"orderable": true
}
]
}
],
"variants": [
{
"product_id": "L20911A53600689509990",
"price": 1995,
"orderable": true,
"variation_values": {
"color": "999",
"size": "0"
}
}
],
"images": [
{
"view_type": "hi-res",
"color": "999",
"images": [
{
"url": "https://example.com/hi-res.png",
"alt": "Moncler Maya"
}
]
}
],
"related_products": [
{
"product_id": "L20912F00059599V2S27",
"name": "Check Wool Shirt Jacket",
"price": 2020,
"currency": "USD",
"image_url": "https://example.com/shirt-jacket.jpg"
}
],
"size_guide": {
"description": "Top",
"rows": [
{
"size": "0",
"measurements": [
{
"label": "Chest",
"cm": "88cm",
"inches": "34,65''"
},
{
"label": "Waist",
"cm": "76cm",
"inches": "29,92''"
}
]
}
],
"country_sizes": [
{
"country": "MONCLER",
"sizes": [
"0",
"1"
]
},
{
"country": "US",
"sizes": [
"XS",
"S"
]
}
]
}
}
}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 product's full detail: name, brand, price, descriptions, color, composition and care instructions, size availability, live stock, variation attributes (color/size options), every orderable variant SKU, product images, "styled with" related products, and a size guide (per-size body measurements and/or a cross-region size conversion table) when the upstream provides one. product_id accepts either a variant-level id or a master/style-level id, both as returned by moncler-search/moncler-category's own result ids.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "L20911A53600689509990",
"master_id": "L20911A5360068950",
"name": "Moncler Maya Hooded Short Down Jacket",
"brand": "Moncler",
"price": 1995,
"currency": "USD",
"short_description": "Emblematic of Moncler's DNA...",
"color": "999",
"composition": "EXTERIOR: 100% Polyamide / Nylon; PADDING: 90% Down, 10% Feather",
"care_instructions": "Wash max 30°C - Mild process; Do not bleach...",
"made_in": "Made in Romania",
"gender": "Men",
"collection": "Archivio",
"in_stock": true,
"stock_level": 16,
"product_url": "https://example.com/moncler-maya-hooded-short-down-jacket-black-L20911A53600689509990.html",
"variation_attributes": [
{
"id": "color",
"label": "Color",
"values": [
{
"value": "999",
"label": "Black",
"orderable": true
}
]
},
{
"id": "size",
"label": "Size",
"values": [
{
"value": "0",
"label": "0",
"orderable": true
}
]
}
],
"variants": [
{
"product_id": "L20911A53600689509990",
"price": 1995,
"orderable": true,
"variation_values": {
"color": "999",
"size": "0"
}
}
],
"images": [
{
"view_type": "hi-res",
"color": "999",
"images": [
{
"url": "https://example.com/hi-res.png",
"alt": "Moncler Maya"
}
]
}
],
"related_products": [
{
"product_id": "L20912F00059599V2S27",
"name": "Check Wool Shirt Jacket",
"price": 2020,
"currency": "USD",
"image_url": "https://example.com/shirt-jacket.jpg"
}
],
"size_guide": {
"description": "Top",
"rows": [
{
"size": "0",
"measurements": [
{
"label": "Chest",
"cm": "88cm",
"inches": "34,65''"
},
{
"label": "Waist",
"cm": "76cm",
"inches": "29,92''"
}
]
}
],
"country_sizes": [
{
"country": "MONCLER",
"sizes": [
"0",
"1"
]
},
{
"country": "US",
"sizes": [
"XS",
"S"
]
}
]
}
}
}curl "https://api.crawlora.net/api/v1/moncler/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"