Endpoint Playground
Test Crawlora's Grailed Collection Listings 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/collection?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | Collection id, from grailed-collections' own collections[].id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": 20,
"title": "Dark Luxury",
"external_id": "20240731-022",
"last_refreshed_at": "2026-09-09T05:26:45.572Z",
"count": 1,
"listings": [
{
"id": 104155968,
"title": "Rick Owens DRKSHDW Detroit Cut Waxed Dirty Blue jeans pants",
"url": "https://www.grailed.com/listings/104155968",
"designers": [
"Rick Owens"
],
"price": 335,
"currency": "USD",
"sold": false,
"condition": "is_used",
"size": "30",
"department": "menswear",
"category_path": "bottoms.denim",
"seller_id": 7914629
}
]
}
}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 one Grailed curated homepage collection's full listing set. id is the collection's numeric id, from grailed-collections' own collections[].id field. An unknown id returns a typed not-found error.
{
"code": 200,
"msg": "OK",
"data": {
"id": 20,
"title": "Dark Luxury",
"external_id": "20240731-022",
"last_refreshed_at": "2026-09-09T05:26:45.572Z",
"count": 1,
"listings": [
{
"id": 104155968,
"title": "Rick Owens DRKSHDW Detroit Cut Waxed Dirty Blue jeans pants",
"url": "https://www.grailed.com/listings/104155968",
"designers": [
"Rick Owens"
],
"price": 335,
"currency": "USD",
"sold": false,
"condition": "is_used",
"size": "30",
"department": "menswear",
"category_path": "bottoms.denim",
"seller_id": 7914629
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/collection?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"