Endpoint Playground
Test Crawlora's Chrono24 search-box suggestions 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/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search text, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"query": "submar",
"suggestions": [
{
"label": "Rolex Submariner",
"result_count": 12428,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Rolex+submariner"
},
{
"label": "Rolex Submariner Date",
"result_count": 6365,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Rolex+submariner+date"
},
{
"label": "Tudor Submariner",
"result_count": 417,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Tudor+submariner"
}
]
}
}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 Chrono24's own search-box typeahead suggestions for a partial query: each suggested phrase with its own live result count, plus the Chrono24 search URL it resolves to. Useful for building a search box against chrono24-search without guessing a full query.
{
"code": 200,
"msg": "OK",
"data": {
"query": "submar",
"suggestions": [
{
"label": "Rolex Submariner",
"result_count": 12428,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Rolex+submariner"
},
{
"label": "Rolex Submariner Date",
"result_count": 6365,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Rolex+submariner+date"
},
{
"label": "Tudor Submariner",
"result_count": 417,
"url": "https://www.chrono24.com/search/index.htm?dosearch=true&query=Tudor+submariner"
}
]
}
}curl "https://api.crawlora.net/api/v1/chrono24/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"