Endpoint Playground
Test Crawlora's List Moncler categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| levels | integer | No | How many levels of the category tree to return |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"category_id": "men",
"name": "Men",
"children": [
{
"category_id": "men-outerwear-all-down-jackets",
"name": "All Down Jackets",
"parent_id": "men"
}
]
},
{
"category_id": "women",
"name": "Women",
"children": [
{
"category_id": "women-outerwear-all-down-jackets",
"name": "All Down Jackets",
"parent_id": "women"
}
]
}
]
}
}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 category tree (id, name, description, and subcategories). Every id is a valid value for moncler-category's own category_id parameter. levels controls how many levels of subcategories are included.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"category_id": "men",
"name": "Men",
"children": [
{
"category_id": "men-outerwear-all-down-jackets",
"name": "All Down Jackets",
"parent_id": "men"
}
]
},
{
"category_id": "women",
"name": "Women",
"children": [
{
"category_id": "women-outerwear-all-down-jackets",
"name": "All Down Jackets",
"parent_id": "women"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/moncler/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"