Endpoint Playground
Test Crawlora's Browse a Gucci 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/gucci/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category path from gucci-categories' own category field | |
| page | integer | No | How many of the upstream's own batches to accumulate, defaults to 1 (see description) |
{
"code": 200,
"msg": "OK",
"data": {
"category": "women/handbags-c-women-handbags",
"country": "us",
"language": "en",
"page": 1,
"products_count": 384,
"pages_count": 11,
"sort_options": [
"default",
"newest",
"price-desc",
"price-asc"
],
"facets": [
{
"path": "women",
"count": 384
},
{
"path": "gifts",
"count": 253
}
],
"products": [
{
"style_code": "A005XWAAG8T1000",
"name": "Jetset GG Marmont medium shoulder bag",
"price": 3100,
"currency": "USD",
"colors": [
"#000000|Black"
],
"images": [
"https://media.gucci.com/style/..."
],
"url": "https://www.gucci.com/us/en/pr/women/handbags/...",
"in_stock": true,
"in_stock_online": true,
"in_stock_stores": true
}
]
}
}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 one Gucci category/browse listing: normalized products (name, price, colors, images, stock) plus the upstream's own product count, page count, sibling-category counts, and sort options. category comes from gucci-categories' own category field. page selects how many of the upstream's own batches to accumulate -- Gucci's own category pages page this way: requesting page=N returns every product from page 1 through page N combined (its own "Load All" button simply requests the last page), not a single page's worth. Defaults to 1 (the upstream's own first batch, 36 products); request page equal to the response's own pages_count to fetch a category's complete listing in one call.
{
"code": 200,
"msg": "OK",
"data": {
"category": "women/handbags-c-women-handbags",
"country": "us",
"language": "en",
"page": 1,
"products_count": 384,
"pages_count": 11,
"sort_options": [
"default",
"newest",
"price-desc",
"price-asc"
],
"facets": [
{
"path": "women",
"count": 384
},
{
"path": "gifts",
"count": 253
}
],
"products": [
{
"style_code": "A005XWAAG8T1000",
"name": "Jetset GG Marmont medium shoulder bag",
"price": 3100,
"currency": "USD",
"colors": [
"#000000|Black"
],
"images": [
"https://media.gucci.com/style/..."
],
"url": "https://www.gucci.com/us/en/pr/women/handbags/...",
"in_stock": true,
"in_stock_online": true,
"in_stock_stores": true
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"