Endpoint Playground
Test Crawlora's Grailed Seller Reviews 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/seller-reviews?username=<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username | string | Yes | Grailed username | |
| page | integer | No | One-based page number, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"username": "woodlandstepps",
"user_id": 7914629,
"page": 1,
"count": 2,
"has_more": true,
"reviews": [
{
"id": 7333988,
"rating": 5,
"tags": [
"item-as-described",
"quick-replies",
"fast-shipper"
],
"created_at": "2026-08-22T16:42:17.194Z",
"listing": {
"id": 99233636,
"title": "L.G.B. Wild Flowers",
"url": "https://www.grailed.com/listings/99233636-le-grande-bleu-l-g-b-l-g-b-wild-flowers",
"price": 180,
"sold": true
}
}
]
}
}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 a Grailed seller's individual buyer feedback entries (rating, note, feedback tags, and the listing each review was left for) -- reputation detail grailed-seller does not carry (grailed-seller only exposes the aggregate rating_average/rating_count). username is the seller's Grailed username, from a listing's own seller.username field or grailed.com/{username}. An unknown username returns a typed not-found error.
{
"code": 200,
"msg": "OK",
"data": {
"username": "woodlandstepps",
"user_id": 7914629,
"page": 1,
"count": 2,
"has_more": true,
"reviews": [
{
"id": 7333988,
"rating": 5,
"tags": [
"item-as-described",
"quick-replies",
"fast-shipper"
],
"created_at": "2026-08-22T16:42:17.194Z",
"listing": {
"id": 99233636,
"title": "L.G.B. Wild Flowers",
"url": "https://www.grailed.com/listings/99233636-le-grande-bleu-l-g-b-l-g-b-wild-flowers",
"price": 180,
"sold": true
}
}
]
}
}curl "https://api.crawlora.net/api/v1/grailed/seller-reviews?username=<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"