Endpoint Playground
Test Crawlora's Grailed Similar 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/similar-listings?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | Listing id to find similar listings for | |
| limit | integer | No | Results to return, defaults to 30, maximum 99 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 104155968,
"limit": 30,
"count": 2,
"listings": [
{
"id": 102856918,
"title": "Rick Owens Drkshdw - FW16 - Dirty Blue Detroit Cut Jeans",
"url": "https://www.grailed.com/listings/102856918",
"designers": [
"Rick Owens"
],
"price": 491,
"currency": "USD",
"sold": false,
"condition": "is_gently_used",
"size": "31"
}
]
}
}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 listings Grailed's own product page recommends as "similar" to one listing -- the same related-items shelf shown on grailed.com's own listing-detail page. id is the listing's numeric id, from a search, sold-listings, or collection result's own id field. An id for a listing that does not exist (deleted, sold and removed, or never valid) returns a typed not-found error.
{
"code": 200,
"msg": "OK",
"data": {
"id": 104155968,
"limit": 30,
"count": 2,
"listings": [
{
"id": 102856918,
"title": "Rick Owens Drkshdw - FW16 - Dirty Blue Detroit Cut Jeans",
"url": "https://www.grailed.com/listings/102856918",
"designers": [
"Rick Owens"
],
"price": 491,
"currency": "USD",
"sold": false,
"condition": "is_gently_used",
"size": "31"
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/similar-listings?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"