Endpoint Playground
Test Crawlora's Search Gucci products 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search keyword | |
| page | integer | No | One-based page number, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 24, maximum 100 | |
| size | string | No | Filter to products listing this exact size as available (e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"query": "belt",
"country": "us",
"page": 1,
"limit": 24,
"count": 2,
"total_results": 173,
"total_pages": 18,
"size_facets": {
"9 = 9.5 US": 52,
"10 = 10.5 US": 51
},
"products": [
{
"style_code": "400593AP00T1000",
"name": "GG Marmont wide belt",
"gender": "Women",
"colors": [
"#000000|Black"
],
"materials": [
"Leather"
],
"price": 570,
"currency": "USD",
"in_stock": true,
"url": "https://www.gucci.com/us/en/pr/women/accessories-for-women/belts-for-women/gg-marmont-wide-belt-p-400593AP00T1000"
}
]
}
}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.
Searches Gucci's product catalog by keyword: normalized product summaries (name, price, colors, materials, sizes, gender, stock) with the search index's own live total result count. A genuinely empty result (e.g. a nonsense query) returns a well-formed empty products list, not an error. The response's own size_facets field lists every size value present in the result set (with live counts) -- pass one of those values as size on a follow-up call to filter to just that size.
{
"code": 200,
"msg": "OK",
"data": {
"query": "belt",
"country": "us",
"page": 1,
"limit": 24,
"count": 2,
"total_results": 173,
"total_pages": 18,
"size_facets": {
"9 = 9.5 US": 52,
"10 = 10.5 US": 51
},
"products": [
{
"style_code": "400593AP00T1000",
"name": "GG Marmont wide belt",
"gender": "Women",
"colors": [
"#000000|Black"
],
"materials": [
"Leather"
],
"price": 570,
"currency": "USD",
"in_stock": true,
"url": "https://www.gucci.com/us/en/pr/women/accessories-for-women/belts-for-women/gg-marmont-wide-belt-p-400593AP00T1000"
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"