Endpoint Playground
Test Crawlora's List Grailed's facet taxonomy 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/grailed/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"value": "menswear",
"count": 7567001
},
{
"value": "womenswear",
"count": 3213103
}
],
"categories": [
{
"value": "tops",
"count": 3585831
},
{
"value": "bottoms",
"count": 1441533
},
{
"value": "footwear",
"count": 495891
}
],
"category_paths": [
{
"value": "tops.short_sleeve_shirts",
"count": 200000
},
{
"value": "footwear.low_top_sneakers",
"count": 100000
}
],
"conditions": [
{
"value": "is_used",
"count": 4516431
},
{
"value": "is_gently_used",
"count": 3552087
},
{
"value": "is_new",
"count": 2642253
},
{
"value": "is_worn",
"count": 68671
},
{
"value": "is_not_specified",
"count": 1802
}
],
"colors": [
{
"value": "black",
"count": 3000000
},
{
"value": "white",
"count": 1500000
}
],
"sizes": [
{
"value": "m",
"count": 900000
},
{
"value": "l",
"count": 800000
}
]
}
}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 Grailed's full facet taxonomy for the enum-like parameters grailed-search/grailed-sold-listings accept: department, category, category_path (a more granular subcategory slug), condition, color, and size, each with its own live listing count. department and condition are exhaustive closed sets (2 and 5 values respectively); category/category_path/color/size are the full, exhaustive value space as of the request. Designer is NOT included here (7,363 values, far too large for a facet-count response) -- see grailed-designers for that discovery endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"value": "menswear",
"count": 7567001
},
{
"value": "womenswear",
"count": 3213103
}
],
"categories": [
{
"value": "tops",
"count": 3585831
},
{
"value": "bottoms",
"count": 1441533
},
{
"value": "footwear",
"count": 495891
}
],
"category_paths": [
{
"value": "tops.short_sleeve_shirts",
"count": 200000
},
{
"value": "footwear.low_top_sneakers",
"count": 100000
}
],
"conditions": [
{
"value": "is_used",
"count": 4516431
},
{
"value": "is_gently_used",
"count": 3552087
},
{
"value": "is_new",
"count": 2642253
},
{
"value": "is_worn",
"count": 68671
},
{
"value": "is_not_specified",
"count": 1802
}
],
"colors": [
{
"value": "black",
"count": 3000000
},
{
"value": "white",
"count": 1500000
}
],
"sizes": [
{
"value": "m",
"count": 900000
},
{
"value": "l",
"count": 800000
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"