Endpoint Playground
Test Crawlora's Search Moncler products 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/search?q=<q>&sort=price-high-to-low" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search keyword | |
| sort | string | No | price-high-to-low | Sort order |
| filter | array | No | Repeatable, up to 10. Each value is \ | |
| limit | integer | No | Max results to return | |
| offset | integer | No | Result offset for pagination |
{
"code": 200,
"msg": "OK",
"data": {
"query": "jacket",
"total": 609,
"offset": 0,
"limit": 24,
"sort_options": [
{
"id": "price-high-to-low",
"label": "Price, high to low"
},
{
"id": "price-low-to-high",
"label": "Price, low to high"
}
],
"facets": [
{
"id": "c_genderFilter",
"label": "Gender",
"values": [
{
"value": "Men",
"label": "Men",
"count": 312
}
]
}
],
"results": [
{
"product_id": "L20911A5360068950999",
"name": "Moncler Maya Hooded Short Down Jacket",
"price": 1995,
"currency": "USD",
"image_url": "https://example.com/L20911A5360068950999_Z.png",
"orderable": true,
"stock_level": 16,
"variant_ids": [
"L20911A53600689509990",
"L20911A53600689509991"
]
}
]
}
}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.
Searches Moncler's product catalog by keyword. Returns normalized product results (name, price, image, orderable color/size variant ids, and live stock level) plus the search index's own sort options and facets (gender, category, color, size, and others) with live per-option result counts. Narrow the same results with the filter param below.
{
"code": 200,
"msg": "OK",
"data": {
"query": "jacket",
"total": 609,
"offset": 0,
"limit": 24,
"sort_options": [
{
"id": "price-high-to-low",
"label": "Price, high to low"
},
{
"id": "price-low-to-high",
"label": "Price, low to high"
}
],
"facets": [
{
"id": "c_genderFilter",
"label": "Gender",
"values": [
{
"value": "Men",
"label": "Men",
"count": 312
}
]
}
],
"results": [
{
"product_id": "L20911A5360068950999",
"name": "Moncler Maya Hooded Short Down Jacket",
"price": 1995,
"currency": "USD",
"image_url": "https://example.com/L20911A5360068950999_Z.png",
"orderable": true,
"stock_level": 16,
"variant_ids": [
"L20911A53600689509990",
"L20911A53600689509991"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/moncler/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"