Endpoint Playground
Test Crawlora's Vestiaire Collective search 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?condition_id=1&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Keyword search text | |
| category_id | string | No | Category id, from /vestiaire/categories | |
| brand_id | string | No | Brand id, from a prior search's facets.brands | |
| condition_id | string | No | 1 | Condition id. Allowed values: 1, 2, 3, 4, 5 |
| sort | string | No | relevance | Sort order. Allowed values: relevance, price_asc, price_desc, recency |
| page | integer | No | Page number, starting at 1 | |
| per_page | integer | No | Results per page, up to 60 |
{
"code": 200,
"msg": "OK",
"data": {
"q": "chanel bag",
"sort": "relevance",
"page": 1,
"per_page": 24,
"total_items": 10000,
"total_pages": 417,
"price_range": {
"min_cents": 700,
"max_cents": 9765700
},
"facets": {
"brands": [
{
"id": "50",
"name": "Chanel",
"count": 119169
}
],
"categories": [
{
"id": "5",
"name": "Bags",
"count": 119040
}
],
"conditions": [
{
"id": "3",
"name": "Very good condition",
"count": 71026
}
]
},
"items": [
{
"id": "70816051",
"name": "Timeless/Classique Chain leather backpack",
"brand": "Chanel",
"brand_id": "50",
"color": "Black",
"price_cents": 270000,
"currency": "USD",
"country": "US",
"sold": false,
"in_stock": false,
"likes": 1,
"pictures": [
"https://images.vestiairecollective.com/produit/70816051-1_2.jpg"
],
"url": "https://www.vestiairecollective.com/women-bags/backpacks/chanel/black-leather-timeless-classique-chain-chanel-backpack-70816051.shtml",
"created_at": "2026-09-08T10:00:03Z"
}
],
"source_url": "https://www.vestiairecollective.com/search/?q=chanel+bag",
"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.
Searches Vestiaire Collective's public pre-owned luxury resale catalog by keyword, category, brand, and condition, with sort and pagination. `sort` values: `relevance`, `price_asc`, `price_desc`, `recency`. `category_id` and `condition_id` come from /vestiaire/categories and /vestiaire/conditions. `page` * `per_page` cannot exceed an offset of 1000 (the upstream service's own pagination limit) -- narrow the query instead of paging deeper. Public data, sourced from Vestiaire Collective's own search service.
{
"code": 200,
"msg": "OK",
"data": {
"q": "chanel bag",
"sort": "relevance",
"page": 1,
"per_page": 24,
"total_items": 10000,
"total_pages": 417,
"price_range": {
"min_cents": 700,
"max_cents": 9765700
},
"facets": {
"brands": [
{
"id": "50",
"name": "Chanel",
"count": 119169
}
],
"categories": [
{
"id": "5",
"name": "Bags",
"count": 119040
}
],
"conditions": [
{
"id": "3",
"name": "Very good condition",
"count": 71026
}
]
},
"items": [
{
"id": "70816051",
"name": "Timeless/Classique Chain leather backpack",
"brand": "Chanel",
"brand_id": "50",
"color": "Black",
"price_cents": 270000,
"currency": "USD",
"country": "US",
"sold": false,
"in_stock": false,
"likes": 1,
"pictures": [
"https://images.vestiairecollective.com/produit/70816051-1_2.jpg"
],
"url": "https://www.vestiairecollective.com/women-bags/backpacks/chanel/black-leather-timeless-classique-chain-chanel-backpack-70816051.shtml",
"created_at": "2026-09-08T10:00:03Z"
}
],
"source_url": "https://www.vestiairecollective.com/search/?q=chanel+bag",
"fetched_at": "2026-09-09T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/vestiaire/search" \
-H "x-api-key: $CRAWLORA_API_KEY"