Endpoint Playground
Test Crawlora's Chrono24 search filter values 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/facets?group=condition" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| group | string | Yes | condition | Filter to list values for |
{
"code": 200,
"msg": "OK",
"data": {
"group": "caseMaterial",
"label": "Case material",
"param": "case_material",
"count": 20,
"values": [
{
"label": "Steel",
"value": "steel",
"count": 412873
},
{
"label": "Yellow gold",
"value": "yellow_gold",
"count": 48213
},
{
"label": "White gold",
"value": "white_gold",
"count": 15942
},
{
"label": "Titanium",
"value": "titanium",
"count": 9021
}
]
}
}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 every value Chrono24 accepts for one of chrono24-search's advanced-search filter params, each with its own live listing count: the discovery endpoint for condition, used_or_new, case_material, dial_color, bracelet_material, movement_type, gender, watch_type and stock_info.
{
"code": 200,
"msg": "OK",
"data": {
"group": "caseMaterial",
"label": "Case material",
"param": "case_material",
"count": 20,
"values": [
{
"label": "Steel",
"value": "steel",
"count": 412873
},
{
"label": "Yellow gold",
"value": "yellow_gold",
"count": 48213
},
{
"label": "White gold",
"value": "white_gold",
"count": 15942
},
{
"label": "Titanium",
"value": "titanium",
"count": 9021
}
]
}
}curl "https://api.crawlora.net/api/v1/chrono24/facets?group=<group>" \
-H "x-api-key: $CRAWLORA_API_KEY"