Endpoint Playground
Test Crawlora's Vestiaire Collective seller 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/seller?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Seller id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "36526194",
"username": "michelle36526194",
"firstname": "michelle",
"country": "United States",
"country_iso": "US",
"segment": "C2C",
"products_sold": 8,
"products_listed": 23,
"products_bought": 0,
"followers": 26,
"following": 11,
"community_rank": 0,
"url": "https://www.vestiairecollective.com/profile/36526194",
"source_url": "https://www.vestiairecollective.com/profile/36526194",
"fetched_at": "2026-09-09T12:00:00Z"
}
}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 a Vestiaire Collective seller's public storefront profile: username, country, segment, aggregate sold/listed/bought counts, and follower/following counts. `id` is the numeric seller id, as returned by /vestiaire/search's `seller_id` field or /vestiaire/product's `seller.id`. Public data, sourced from Vestiaire Collective's own seller profile page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "36526194",
"username": "michelle36526194",
"firstname": "michelle",
"country": "United States",
"country_iso": "US",
"segment": "C2C",
"products_sold": 8,
"products_listed": 23,
"products_bought": 0,
"followers": 26,
"following": 11,
"community_rank": 0,
"url": "https://www.vestiairecollective.com/profile/36526194",
"source_url": "https://www.vestiairecollective.com/profile/36526194",
"fetched_at": "2026-09-09T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/vestiaire/seller?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"