Moncler API endpoint
Use Crawlora's Get a Moncler product's detail API to extract supported public Moncler data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/moncler/productReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| product_id | string | Yes | Product or master id | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/moncler/product" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `master_id` is the style-level id shared by every color/size variant of this product. - `variation_attributes` lists every variation axis the product offers (typically `color` and `size`), each with every value the upstream defines and whether it is currently orderable. - `variants` lists every concrete, orderable SKU with its own `product_id`, `price`, and `variation_values` (e.g. `{"color":"999","size":"2"}`). - `images` is a curated subset of the upstream's own image groups (its primary gallery and swatch images), each tagged with a `view_type` and, when color-specific, the `color` it belongs to. - `stock_level` is the upstream's live available-to-sell quantity for this specific product id. - `composition`, `care_instructions`, and `made_in` are free-text fields the upstream itself provides, not a fixed enum. - `related_products` lists the "styled with" items the upstream's own product page suggests alongside this product, when available. Not every product has these. - `size_guide` is this product's size chart, when the upstream provides one. `rows` lists real per-size body measurements (e.g. chest/waist/hip, in both `cm` and `inches`) for apparel; it is omitted for products whose chart carries no real measurement labels (e.g. footwear). `country_sizes` is a cross-region size conversion table (e.g. `MONCLER`, `US`, `IT`, `UK`) present for both apparel and footwear/accessories — every country's `sizes` array is positionally aligned, so index 0 in every country is the same physical size. Example response: ```json {"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"]}]}}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
]
}
]
}
}
}Request schema
No body schema
Response schema
#/definitions/moncler.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | moncler.Product | No | ||||
| data.brand | string | No | ||||
| data.care_instructions | string | No | ||||
| data.collection | string | No | ||||
| data.color | string | No | ||||
| data.composition | string | No | ||||
| data.currency | string | No | ||||
| data.gender | string | No | ||||
| data.images | array | No | ||||
| data.images[].color | string | No | ||||
| data.images[].images | array | No | ||||
| data.images[].images[].alt | string | No | ||||
| data.images[].images[].url | string | No | ||||
| data.images[].view_type | string | No | ||||
| data.in_stock | boolean | No | ||||
| data.long_description | string | No | ||||
| data.made_in | string | No | ||||
| data.master_id | string | No | ||||
| data.name | string | No | ||||
| data.price | number | No | ||||
| data.product_id | string | No | ||||
| data.product_url | string | No | ||||
| data.related_products | array | No | RelatedProducts are "styled with" items Moncler's own product page suggests alongside this product. | |||
| data.related_products[].currency | string | No | ||||
| data.related_products[].image_url | string | No | ||||
| data.related_products[].name | string | No | ||||
| data.related_products[].price | number | No | ||||
| data.related_products[].product_id | string | No | ||||
| data.short_description | string | No | ||||
| data.size_guide | unknown | No | SizeGuide is this product's size chart (per-size body measurements and/or a cross-region size conversion table), when the upstream provides one. | |||
| data.stock_level | number | No | ||||
| data.variants | array | No | ||||
| data.variants[].orderable | boolean | No | ||||
| data.variants[].price | number | No | ||||
| data.variants[].product_id | string | No | ||||
| data.variants[].variation_values | object | No | ||||
| data.variation_attributes | array | No | ||||
| data.variation_attributes[].id | string | No | ||||
| data.variation_attributes[].label | string | No | ||||
| data.variation_attributes[].values | array | No | ||||
| data.variation_attributes[].values[].label | string | No | ||||
| data.variation_attributes[].values[].orderable | boolean | No | ||||
| data.variation_attributes[].values[].value | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/moncler/product" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms