Endpoint Playground
Test Crawlora's Get a Gucci product 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/product?style_code=<style_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| style_code | string | Yes | Product style code, from gucci-search's or gucci-category's own style_code field |
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "A005Y8AAG231096",
"name": "Bamboo Tote large bag",
"description": "Gucci Primavera establishes a new vocabulary of silhouettes, textures, and materials...",
"gender": "Women",
"colors": [
"#000000|Black"
],
"materials": [
"Leather"
],
"sizes": [
"U"
],
"sku": "814374772",
"price": 4450,
"currency": "USD",
"availability": "InStock",
"breadcrumbs": [
"Women",
"Handbags",
"Shoulder Bags for Women"
],
"in_stock": true,
"in_stock_online": true,
"in_stock_stores": true,
"url": "https://www.gucci.com/us/en/pr/women/handbags/shoulder-bags-for-women/bamboo-tote-large-bag-p-A005Y8AAG231096"
}
}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 full normalized product detail for one style: name, marketing description, breadcrumb trail, brand line, gender, colors, materials, sizes, price, images, and stock -- combining Gucci's own structured product record with the product page's own marketing copy. style_code comes from gucci-search's or gucci-category's own style_code field.
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "A005Y8AAG231096",
"name": "Bamboo Tote large bag",
"description": "Gucci Primavera establishes a new vocabulary of silhouettes, textures, and materials...",
"gender": "Women",
"colors": [
"#000000|Black"
],
"materials": [
"Leather"
],
"sizes": [
"U"
],
"sku": "814374772",
"price": 4450,
"currency": "USD",
"availability": "InStock",
"breadcrumbs": [
"Women",
"Handbags",
"Shoulder Bags for Women"
],
"in_stock": true,
"in_stock_online": true,
"in_stock_stores": true,
"url": "https://www.gucci.com/us/en/pr/women/handbags/shoulder-bags-for-women/bamboo-tote-large-bag-p-A005Y8AAG231096"
}
}curl "https://api.crawlora.net/api/v1/gucci/product?style_code=<style_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"