Endpoint Playground
Test Crawlora's Grailed Designer Directory 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/designers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text designer name filter | |
| page | integer | No | One-based page number, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 24, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "gucci",
"page": 1,
"limit": 24,
"count": 1,
"total_results": 7363,
"total_pages": 307,
"designers": [
{
"id": 79,
"name": "Gucci",
"slug": "gucci",
"listings_count": 250601,
"departments": [
"menswear",
"womenswear"
],
"logo_url": "https://media-assets.grailed.com/prd/detail-page/gucci-logo"
}
]
}
}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 page of Grailed's full designer/brand taxonomy (7,363 designers as of 2026-09-09) -- the value space grailed-search/grailed-sold-listings' own designer parameter accepts (by name). q is an optional free-text filter (typo-tolerant, e.g. a partial name for typeahead-style lookup); an empty q lists the full taxonomy ordered by Grailed's own default ranking (most-listed designers first).
{
"code": 200,
"msg": "OK",
"data": {
"query": "gucci",
"page": 1,
"limit": 24,
"count": 1,
"total_results": 7363,
"total_pages": 307,
"designers": [
{
"id": 79,
"name": "Gucci",
"slug": "gucci",
"listings_count": 250601,
"departments": [
"menswear",
"womenswear"
],
"logo_url": "https://media-assets.grailed.com/prd/detail-page/gucci-logo"
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/designers" \
-H "x-api-key: $CRAWLORA_API_KEY"