Endpoint Playground
Test Crawlora's Vestiaire suggest 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/vestiaire/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query to autocomplete |
{
"code": 200,
"msg": "OK",
"data": {
"q": "chane",
"brands": [
{
"id": "50",
"name": "Chanel",
"url": "https://www.vestiairecollective.com/chanel/"
},
{
"id": "9705",
"name": "Chanel x Pharrell Williams",
"url": "https://www.vestiairecollective.com/chanel-x-pharrell-williams/"
}
],
"suggestions": [
"chane",
"chanel",
"chanel bag",
"chanel shoes",
"chanel sunglasses"
]
}
}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 Vestiaire Collective's own search-box autocomplete suggestions for a partial query: matching brands plus completed search phrases. Public data, sourced from Vestiaire Collective's own search-suggestions service.
{
"code": 200,
"msg": "OK",
"data": {
"q": "chane",
"brands": [
{
"id": "50",
"name": "Chanel",
"url": "https://www.vestiairecollective.com/chanel/"
},
{
"id": "9705",
"name": "Chanel x Pharrell Williams",
"url": "https://www.vestiairecollective.com/chanel-x-pharrell-williams/"
}
],
"suggestions": [
"chane",
"chanel",
"chanel bag",
"chanel shoes",
"chanel sunglasses"
]
}
}curl "https://api.crawlora.net/api/v1/vestiaire/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"