Endpoint Playground
Test Crawlora's Chrono24 dealer buyer 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/chrono24/dealer/reviews?slug=<slug>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Dealer slug from a listing's seller link | |
| page | integer | No | One-based result page | |
| page_size | integer | No | Reviews per page, 1-50 | |
| min_stars | integer | No | Keep only reviews rating the dealer at least this many stars, 0-5. 0 returns every review | |
| sort | string | No | relevance | Result order. One of: relevance, newest, with_recommendation, without_recommendation |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "thetimelords",
"sort": "relevance",
"page": 1,
"page_size": 10,
"total_count": 7,
"reviews": [
{
"author": "Scott H.",
"country": "US",
"date": "October 27, 2025",
"rating": {
"average": 5,
"article": 5,
"communication": 5,
"delivery": 5
},
"recommends_seller": true,
"comment": "Absolutely perfect transaction. I'd highly recommend this dealer.",
"watch_title": "Rolex Explorer II 2001"
}
]
}
}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.
Fetches one page of a Chrono24 dealer/seller's buyer reviews: reviewer name and country, review date, star-rating breakdown (shipping/description/communication), whether the buyer recommends the seller, their free-text comment, and the dealer's own reply when present. slug is the same dealer slug chrono24-dealer takes.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "thetimelords",
"sort": "relevance",
"page": 1,
"page_size": 10,
"total_count": 7,
"reviews": [
{
"author": "Scott H.",
"country": "US",
"date": "October 27, 2025",
"rating": {
"average": 5,
"article": 5,
"communication": 5,
"delivery": 5
},
"recommends_seller": true,
"comment": "Absolutely perfect transaction. I'd highly recommend this dealer.",
"watch_title": "Rolex Explorer II 2001"
}
]
}
}curl "https://api.crawlora.net/api/v1/chrono24/dealer/reviews?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"