Endpoint Playground
Test Crawlora's Gucci search-box suggestions 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/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query | |
| limit | integer | No | Maximum suggestions to return, defaults to 5, maximum 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "bel",
"suggestions": [
{
"query": "belts",
"result_count": 173
},
{
"query": "belt bag",
"result_count": 29
},
{
"query": "belts for women",
"result_count": 109
}
]
}
}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 search-box typeahead suggestions for a partial query, each with its own live total result count on the search index. Not product data -- pass a suggestion's own query value straight into gucci-search for results.
{
"code": 200,
"msg": "OK",
"data": {
"query": "bel",
"suggestions": [
{
"query": "belts",
"result_count": 173
},
{
"query": "belt bag",
"result_count": 29
},
{
"query": "belts for women",
"result_count": 109
}
]
}
}curl "https://api.crawlora.net/api/v1/gucci/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"