Endpoint Playground
Test Crawlora's Vestiaire Collective product 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/product?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Listing URL or path, from a search result's url field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "70860454",
"name": "Leather biker jacket",
"description": "Black leather jacket from Off-White for women. Never worn.",
"brand": {
"id": "6444",
"name": "Off-White"
},
"category": {
"id": "611",
"name": "Leather jackets",
"parent_id": "2"
},
"condition": "Never worn",
"material": "Leather",
"color": "Black",
"universe": "Women",
"size": "L",
"size_standard": "International",
"price_cents": 31100,
"currency": "USD",
"sold": false,
"reserved": false,
"negotiable": true,
"available": true,
"in_stock": false,
"like_count": 2,
"pictures": [
"https://images.vestiairecollective.com/produit/70860454-8_3.jpg"
],
"seller": {
"id": "36526194",
"username": "michelle36526194",
"country": "United States",
"country_iso": "US",
"badge": "Common",
"products_sold": 8,
"products_listed": 23
},
"url": "https://www.vestiairecollective.com/women-clothing/biker-jackets/off-white/black-leather-off-white-biker-jacket-70860454.shtml",
"source_url": "https://www.vestiairecollective.com/women-clothing/biker-jackets/off-white/black-leather-off-white-biker-jacket-70860454.shtml",
"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 single Vestiaire Collective listing's public detail: price, brand, category, condition, material, color, size, seller summary, and photos. `path` is the listing's URL or site-relative path, as returned by /vestiaire/search's `url` field -- the numeric id alone cannot be resolved to a page. Public data, sourced from Vestiaire Collective's own listing page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "70860454",
"name": "Leather biker jacket",
"description": "Black leather jacket from Off-White for women. Never worn.",
"brand": {
"id": "6444",
"name": "Off-White"
},
"category": {
"id": "611",
"name": "Leather jackets",
"parent_id": "2"
},
"condition": "Never worn",
"material": "Leather",
"color": "Black",
"universe": "Women",
"size": "L",
"size_standard": "International",
"price_cents": 31100,
"currency": "USD",
"sold": false,
"reserved": false,
"negotiable": true,
"available": true,
"in_stock": false,
"like_count": 2,
"pictures": [
"https://images.vestiairecollective.com/produit/70860454-8_3.jpg"
],
"seller": {
"id": "36526194",
"username": "michelle36526194",
"country": "United States",
"country_iso": "US",
"badge": "Common",
"products_sold": 8,
"products_listed": 23
},
"url": "https://www.vestiairecollective.com/women-clothing/biker-jackets/off-white/black-leather-off-white-biker-jacket-70860454.shtml",
"source_url": "https://www.vestiairecollective.com/women-clothing/biker-jackets/off-white/black-leather-off-white-biker-jacket-70860454.shtml",
"fetched_at": "2026-09-09T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/vestiaire/product?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"