Endpoint Playground
Test Crawlora's Vestiaire search sellers 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/search-sellers?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Seller username or first name to search for |
{
"code": 200,
"msg": "OK",
"data": {
"q": "michelle",
"sellers": [
{
"id": "515578",
"username": "michelle_",
"name": "Michelle",
"avatar_url": "https://images.vestiairecollective.com/profil/515578-c15a06b33eba94f4e2513f8c946218d0.jpg"
},
{
"id": "14773271",
"username": "michelle0",
"name": "Michelle"
}
]
}
}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.
Finds Vestiaire Collective sellers by username or first name. A matched result's id can be passed directly to GET /vestiaire/seller for that seller's full public storefront profile. Public data, sourced from Vestiaire Collective's own member-search service.
{
"code": 200,
"msg": "OK",
"data": {
"q": "michelle",
"sellers": [
{
"id": "515578",
"username": "michelle_",
"name": "Michelle",
"avatar_url": "https://images.vestiairecollective.com/profil/515578-c15a06b33eba94f4e2513f8c946218d0.jpg"
},
{
"id": "14773271",
"username": "michelle0",
"name": "Michelle"
}
]
}
}curl "https://api.crawlora.net/api/v1/vestiaire/search-sellers?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"