Endpoint Playground
Test Crawlora's Wish Product 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/wish/product/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Wish product id, a 24-character hex id from a search result's product_id field | |
| count | integer | No | Number of reviews to return, 1 to 200, defaults to 10 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"product_id": "sample-id",
"result_count": 1,
"reviews": [
{
"color": "sample",
"comment": "sample",
"created_at": "sample",
"downvote_count": 1,
"id": "sample-id",
"image_ids": [
"sample"
],
"is_wish_star": true,
"rating": 1,
"title": "sample",
"upvote_count": 1,
"user_country_code": "sample",
"user_name": "sample"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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 Wish product's normalized customer reviews. id is taken from a search result's product_id field or a product page's URL. A product with zero reviews returns a normal, empty result rather than an error. A caller wanting more reviews should re-request with a larger count -- this endpoint does not support an offset/cursor parameter, since the upstream source does not support one.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"product_id": "sample-id",
"result_count": 1,
"reviews": [
{
"color": "sample",
"comment": "sample",
"created_at": "sample",
"downvote_count": 1,
"id": "sample-id",
"image_ids": [
"sample"
],
"is_wish_star": true,
"rating": 1,
"title": "sample",
"upvote_count": 1,
"user_country_code": "sample",
"user_name": "sample"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wish/product/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"