Endpoint Playground
Test Crawlora's Gucci product recommendations 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/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| style_code | string | No | Product style code to get related items for; omit for the site's general trending-items shelf instead | |
| max | integer | No | Maximum products to return, defaults to 10, maximum 20 |
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "A005Y8AAG231096",
"model": "related-products",
"country": "us",
"count": 2,
"products": [
{
"style_code": "A005Y8AAG4B9761",
"name": "Bamboo Tote large bag",
"price": 4450,
"currency": "USD",
"image_url": "https://media.gucci.com/style/$format$/1784301307/A005Y8_AAG4B_9761_001_100_0000_Light.jpg",
"url": "https://www.gucci.com/us/en/pr/women/handbags/shoulder-bags-for-women/bamboo-tote-large-bag-p-A005Y8AAG4B9761",
"in_stock_online": true,
"in_stock_stores": true
},
{
"style_code": "A005YBAAG8Z2742",
"name": "Bamboo Tote medium bag",
"price": 3950,
"currency": "USD",
"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 recommendations shelf: normalized product summaries (name, price, image, stock) from either a given product's own "You May Also Like" carousel (style_code set) or the site's general trending-items shelf (style_code omitted). style_code comes from gucci-search's or gucci-category's own style_code field.
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "A005Y8AAG231096",
"model": "related-products",
"country": "us",
"count": 2,
"products": [
{
"style_code": "A005Y8AAG4B9761",
"name": "Bamboo Tote large bag",
"price": 4450,
"currency": "USD",
"image_url": "https://media.gucci.com/style/$format$/1784301307/A005Y8_AAG4B_9761_001_100_0000_Light.jpg",
"url": "https://www.gucci.com/us/en/pr/women/handbags/shoulder-bags-for-women/bamboo-tote-large-bag-p-A005Y8AAG4B9761",
"in_stock_online": true,
"in_stock_stores": true
},
{
"style_code": "A005YBAAG8Z2742",
"name": "Bamboo Tote medium bag",
"price": 3950,
"currency": "USD",
"in_stock_online": true,
"in_stock_stores": true
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"