Endpoint Playground
Test Crawlora's Browse a Moncler category 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/category?category_id=<category_id>&sort=price-high-to-low" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | string | Yes | Category id, from moncler-categories | |
| 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": {
"category_id": "men-outerwear-all-down-jackets",
"total": 93,
"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"
}
],
"results": [
{
"product_id": "L20911A0009959766J57",
"name": "Solienn Hooded Short Down Jacket",
"price": 2165,
"currency": "USD",
"image_url": "https://example.com/L20911A00099597X2779_Z.png",
"orderable": true,
"variant_ids": [
"L20911A0009959766J570"
]
}
]
}
}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.
Lists products within one category. category_id must be a value returned by moncler-categories' own category_id field -- a closed set the upstream defines. Returns the same normalized result and facet shape as moncler-search. Narrow the same results with the filter param below.
{
"code": 200,
"msg": "OK",
"data": {
"category_id": "men-outerwear-all-down-jackets",
"total": 93,
"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"
}
],
"results": [
{
"product_id": "L20911A0009959766J57",
"name": "Solienn Hooded Short Down Jacket",
"price": 2165,
"currency": "USD",
"image_url": "https://example.com/L20911A00099597X2779_Z.png",
"orderable": true,
"variant_ids": [
"L20911A0009959766J570"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/moncler/category?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"