Endpoint Playground
Test Crawlora's Get a Grailed listing 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/listing?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | Listing id, from a search or sold-listings result's own listings[].id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": 105379689,
"title": "Chateau Marmont Gucci Tshirt Red Japan Exclusive",
"url": "https://www.grailed.com/listings/105379689",
"description": "Gucci Chateau shirt red Japan Exclusive\nLabeled size XS truly fits accurately to a M\nVery rare",
"price": 400,
"currency": "USD",
"sold": false,
"condition": "is_gently_used",
"size": "m",
"pretty_size": "US M / EU 48-50 / 2",
"department": "menswear",
"category": "tops",
"subcategory": "Short Sleeve T-Shirts",
"category_path": "tops.short_sleeve_shirts",
"designers": [
{
"id": 79,
"name": "Gucci",
"slug": "gucci",
"departments": [
"menswear",
"womenswear"
]
}
],
"styles": [
"luxury"
],
"traits": {
"color": "black",
"country_of_origin": "IT"
},
"photos": [
"https://media-assets.grailed.com/prd/listing/temp/dc6e1242b28a48bba80b5a353bb8c869"
],
"measurements": [
{
"inches": 17,
"measurement_type_id": 1,
"department_mapping_id": 100
}
],
"follower_count": 712,
"buy_now": true,
"make_offer": true,
"created_at": "2026-09-08T23:44:57.833Z",
"seller": {
"id": 10332947,
"username": "woodlandstepps",
"location": "United States",
"total_bought_and_sold": 52,
"listings_for_sale_count": 4,
"follower_count": 13,
"confirmed": true,
"speedy_shipper": true,
"sold_count": 22,
"rating_average": 4.8,
"rating_count": 9,
"tag_list": [
"fast-shipper",
"quick-replies",
"item-as-described"
]
}
}
}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 full normalized listing-detail data for one Grailed listing: description, every photo, measurements, designers, and the seller's full profile -- richer than the flattened summary grailed-search/grailed-sold-listings return per listing. id is the listing's numeric id, from a search or sold-listings result's own listings[].id field.
{
"code": 200,
"msg": "OK",
"data": {
"id": 105379689,
"title": "Chateau Marmont Gucci Tshirt Red Japan Exclusive",
"url": "https://www.grailed.com/listings/105379689",
"description": "Gucci Chateau shirt red Japan Exclusive\nLabeled size XS truly fits accurately to a M\nVery rare",
"price": 400,
"currency": "USD",
"sold": false,
"condition": "is_gently_used",
"size": "m",
"pretty_size": "US M / EU 48-50 / 2",
"department": "menswear",
"category": "tops",
"subcategory": "Short Sleeve T-Shirts",
"category_path": "tops.short_sleeve_shirts",
"designers": [
{
"id": 79,
"name": "Gucci",
"slug": "gucci",
"departments": [
"menswear",
"womenswear"
]
}
],
"styles": [
"luxury"
],
"traits": {
"color": "black",
"country_of_origin": "IT"
},
"photos": [
"https://media-assets.grailed.com/prd/listing/temp/dc6e1242b28a48bba80b5a353bb8c869"
],
"measurements": [
{
"inches": 17,
"measurement_type_id": 1,
"department_mapping_id": 100
}
],
"follower_count": 712,
"buy_now": true,
"make_offer": true,
"created_at": "2026-09-08T23:44:57.833Z",
"seller": {
"id": 10332947,
"username": "woodlandstepps",
"location": "United States",
"total_bought_and_sold": 52,
"listings_for_sale_count": 4,
"follower_count": 13,
"confirmed": true,
"speedy_shipper": true,
"sold_count": 22,
"rating_average": 4.8,
"rating_count": 9,
"tag_list": [
"fast-shipper",
"quick-replies",
"item-as-described"
]
}
}
}curl "https://api.crawlora.net/api/v1/grailed/listing?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"