Endpoint Playground
Test Crawlora's Chrono24 models for a brand 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/models?brand=<brand>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| brand | string | Yes | Brand slug from chrono24-brands |
{
"code": 200,
"msg": "OK",
"data": {
"brand": "rolex",
"models": [
{
"name": "Submariner",
"slug": "submariner--mod1",
"id": "1",
"url": "https://www.chrono24.com/rolex/submariner--mod1.htm"
},
{
"name": "Datejust",
"slug": "datejust--mod45",
"id": "45",
"url": "https://www.chrono24.com/rolex/datejust--mod45.htm"
}
],
"count": 2
}
}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 every model/collection Chrono24 lists for one watch brand (e.g. Rolex Submariner, Rolex Datejust), each with the slug identifying it, usable as the model parameter on chrono24-search. This is the discovery endpoint for that parameter, so every accepted value for a brand is obtainable from this API rather than by reading the website.
{
"code": 200,
"msg": "OK",
"data": {
"brand": "rolex",
"models": [
{
"name": "Submariner",
"slug": "submariner--mod1",
"id": "1",
"url": "https://www.chrono24.com/rolex/submariner--mod1.htm"
},
{
"name": "Datejust",
"slug": "datejust--mod45",
"id": "45",
"url": "https://www.chrono24.com/rolex/datejust--mod45.htm"
}
],
"count": 2
}
}curl "https://api.crawlora.net/api/v1/chrono24/models?brand=<brand>" \
-H "x-api-key: $CRAWLORA_API_KEY"