Endpoint Playground
Test Crawlora's Chrono24 watch brands 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/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"brands": [
{
"name": "Rolex",
"slug": "rolex",
"url": "https://www.chrono24.com/rolex/index.htm"
},
{
"name": "Omega",
"slug": "omega",
"url": "https://www.chrono24.com/omega/index.htm"
},
{
"name": "Patek Philippe",
"slug": "patekphilippe",
"url": "https://www.chrono24.com/patekphilippe/index.htm"
}
],
"count": 599
}
}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 Chrono24's full watch-brand index: every brand name and the slug identifying it, usable as the brand parameter on chrono24-models and chrono24-search. This is the discovery endpoint for that parameter, so every accepted value is obtainable from this API rather than by reading the website.
{
"code": 200,
"msg": "OK",
"data": {
"brands": [
{
"name": "Rolex",
"slug": "rolex",
"url": "https://www.chrono24.com/rolex/index.htm"
},
{
"name": "Omega",
"slug": "omega",
"url": "https://www.chrono24.com/omega/index.htm"
},
{
"name": "Patek Philippe",
"slug": "patekphilippe",
"url": "https://www.chrono24.com/patekphilippe/index.htm"
}
],
"count": 599
}
}curl "https://api.crawlora.net/api/v1/chrono24/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"