Endpoint Playground
Test Crawlora's Chrono24 dealer storefront 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?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Dealer slug from a listing's seller link |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "thetimelords",
"name": "Time Lords",
"url": "https://www.chrono24.com/dealer/thetimelords/index.htm",
"description": "The Time Lords we are Jewelry Store/ Watch Dealers In Los Angeles Since 1978",
"seller_badge": "Trusted Seller",
"rating": 4.9,
"review_count": 7,
"watches_sold": 13,
"listings": [
{
"id": "52200001",
"title": "Rolex Daytona",
"subtitle": "2025 full set rose gold box papers",
"price": 52000,
"currency": "USD",
"price_text": "$52,000",
"seller_type": "Time Lords",
"location": "US",
"image_url": "https://img.chrono24.com/images/uhren/52200001-Square.jpg",
"url": "https://www.chrono24.com/rolex/daytona--id52200001.htm"
}
]
}
}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 Chrono24 dealer/seller's public storefront page: business description, trust badge, average buyer rating and review count, lifetime watches-sold count, and their current listed inventory in the same shape chrono24-search returns. slug is found in a chrono24-search or chrono24-listing result's seller link; there is no separate dealer-discovery endpoint since dealer slugs are not a closed set Chrono24 publishes an index of.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "thetimelords",
"name": "Time Lords",
"url": "https://www.chrono24.com/dealer/thetimelords/index.htm",
"description": "The Time Lords we are Jewelry Store/ Watch Dealers In Los Angeles Since 1978",
"seller_badge": "Trusted Seller",
"rating": 4.9,
"review_count": 7,
"watches_sold": 13,
"listings": [
{
"id": "52200001",
"title": "Rolex Daytona",
"subtitle": "2025 full set rose gold box papers",
"price": 52000,
"currency": "USD",
"price_text": "$52,000",
"seller_type": "Time Lords",
"location": "US",
"image_url": "https://img.chrono24.com/images/uhren/52200001-Square.jpg",
"url": "https://www.chrono24.com/rolex/daytona--id52200001.htm"
}
]
}
}curl "https://api.crawlora.net/api/v1/chrono24/dealer?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"