Endpoint Playground
Test Crawlora's Vestiaire Collective conditions 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/conditions" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"conditions": [
{
"id": "1",
"name": "Never worn, with tag",
"count": 68439
},
{
"id": "2",
"name": "Never worn",
"count": 96412
},
{
"id": "3",
"name": "Very good condition",
"count": 227702
},
{
"id": "4",
"name": "Good condition",
"count": 51148
},
{
"id": "5",
"name": "Fair condition",
"count": 6299
}
],
"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 the fixed set of condition ids accepted by /vestiaire/search's condition_id filter, with each id's display name and current listing count.
{
"code": 200,
"msg": "OK",
"data": {
"conditions": [
{
"id": "1",
"name": "Never worn, with tag",
"count": 68439
},
{
"id": "2",
"name": "Never worn",
"count": 96412
},
{
"id": "3",
"name": "Very good condition",
"count": 227702
},
{
"id": "4",
"name": "Good condition",
"count": 51148
},
{
"id": "5",
"name": "Fair condition",
"count": 6299
}
],
"fetched_at": "2026-09-09T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/vestiaire/conditions" \
-H "x-api-key: $CRAWLORA_API_KEY"