Endpoint Playground
Test Crawlora's Get Quince 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/quince/product/reviews?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle | string | Yes | Product URL handle, from a search result's products[].handle field |
{
"code": 200,
"msg": "OK",
"data": {
"handle": "women/cashmere/cashmere-crewneck-sweater",
"average_rating": 4.87,
"review_count": 34404,
"reviews": [
{
"author": "Brenda M.",
"date_published": "2026-08-19 13:47:18",
"rating": 5,
"body": "I am so happy to see this beautiful red sweater. The red is stunning."
}
]
}
}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 sample of a Quince product's normalized customer reviews (author, date, rating, review body), plus the product's overall aggregate rating and review count. handle is the same value quince-product accepts. The reviews returned are the sample Quince's own page carries in its structured product data (confirmed live: 25 reviews on every product sampled during research), not a paginated feed of the full review history. A product with no reviews yet returns a well-formed empty result.
{
"code": 200,
"msg": "OK",
"data": {
"handle": "women/cashmere/cashmere-crewneck-sweater",
"average_rating": 4.87,
"review_count": 34404,
"reviews": [
{
"author": "Brenda M.",
"date_published": "2026-08-19 13:47:18",
"rating": 5,
"body": "I am so happy to see this beautiful red sweater. The red is stunning."
}
]
}
}curl "https://api.crawlora.net/api/v1/quince/product/reviews?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"