Endpoint Playground
Test Crawlora's Gucci product size chart 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/size-guide?style_code=<style_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| style_code | string | Yes | Product style code |
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "757892AACAG9055",
"available": true,
"title": "MEN'S SHOES",
"headers": [
"SIZE",
"IT/EU",
"UK/AU",
"US",
"KR(MM)",
"JP(CM)",
"MX",
"FOOT LENGTH(INCH)"
],
"rows": [
[
"4",
"38",
"4",
"4.5",
"230",
"23",
"4.5",
"9.61"
],
[
"4.5",
"38.5",
"4.5",
"5",
"235",
"23.5",
"5",
"9.76"
]
]
}
}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 own size-conversion chart for one product style, as a plain header row plus data rows. Not every style carries one -- a one-size accessory (a bag, a scarf) returns available: false with no headers/rows, a well-formed signal rather than an error. style_code comes from gucci-search's or gucci-category's own style_code field.
{
"code": 200,
"msg": "OK",
"data": {
"style_code": "757892AACAG9055",
"available": true,
"title": "MEN'S SHOES",
"headers": [
"SIZE",
"IT/EU",
"UK/AU",
"US",
"KR(MM)",
"JP(CM)",
"MX",
"FOOT LENGTH(INCH)"
],
"rows": [
[
"4",
"38",
"4",
"4.5",
"230",
"23",
"4.5",
"9.61"
],
[
"4.5",
"38.5",
"4.5",
"5",
"235",
"23.5",
"5",
"9.76"
]
]
}
}curl "https://api.crawlora.net/api/v1/gucci/size-guide?style_code=<style_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"