Endpoint Playground
Test Crawlora's List Gucci 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/gucci/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | No | Department label to filter to (case-insensitive substring match against the response's own departments field), e.g. women, men. Omit for every department. |
{
"code": 200,
"msg": "OK",
"data": {
"country": "us",
"language": "en",
"departments": [
"Handbags",
"Women",
"Men",
"New In",
"Children",
"Jewelry & Watches",
"Gifts"
],
"categories": [
{
"department": "Women",
"path": "Women > Handbags > Crossbody Bags",
"label": "Crossbody Bags",
"category": "women/handbags/crossbody-bags-for-women-c-women-handbags-crossbody"
},
{
"department": "Women",
"path": "Women > Handbags > Tote Bags",
"label": "Tote Bags",
"category": "women/handbags/tote-bags-for-women-c-women-handbags-totes"
}
]
}
}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 Gucci's full department/category/subcategory taxonomy, sourced directly from the site's own header navigation menu. Each entry's category value is exactly what gucci-category's own category parameter accepts. Filter to one department with department (e.g. women, men); omit for every department -- see the response's own departments field for the live list of top-level department labels to filter by.
{
"code": 200,
"msg": "OK",
"data": {
"country": "us",
"language": "en",
"departments": [
"Handbags",
"Women",
"Men",
"New In",
"Children",
"Jewelry & Watches",
"Gifts"
],
"categories": [
{
"department": "Women",
"path": "Women > Handbags > Crossbody Bags",
"label": "Crossbody Bags",
"category": "women/handbags/crossbody-bags-for-women-c-women-handbags-crossbody"
},
{
"department": "Women",
"path": "Women > Handbags > Tote Bags",
"label": "Tote Bags",
"category": "women/handbags/tote-bags-for-women-c-women-handbags-totes"
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"