Endpoint Playground
Test Crawlora's Chrono24 watch listing detail 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/listing?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Listing URL or path from a chrono24-search result's url field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "40700313",
"title": "Rolex Datejust 36 Rolex Datejust",
"url": "https://www.chrono24.com/rolex/datejust-36--id40700313.htm",
"brand": "Rolex",
"model": "Datejust",
"reference": "16014",
"price": 3900,
"currency": "USD",
"price_text": "$3,900 [Negotiable]",
"negotiable": true,
"condition": "Used (Very good) The item shows minor signs of wear, such as small, intangible scratches.",
"year": "1981 (Approximation)",
"movement": "Automatic",
"case_material": "Steel",
"case_diameter": "36 mm",
"bracelet_material": "White gold",
"gender": "Men's watch/Unisex",
"location": "United States of America, Alabama",
"availability": "Item is in stock",
"seller_type": "Private Seller",
"images": [
"https://img.chrono24.com/images/uhren/40700313-a.jpg"
],
"specs": [
{
"section": "Basic Info",
"label": "Listing code",
"value": "O8CK96"
},
{
"section": "Case",
"label": "Case diameter",
"value": "36 mm"
}
]
}
}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 listing's full detail page: brand, model, reference number, price with currency and negotiability, condition, year of production, movement, case material and diameter, bracelet material, location, availability, seller type, photos, and the complete raw spec table Chrono24 itself shows (grouped by section: Basic Info, Caliber, Case, Bracelet/strap, Functions). path is the listing URL from a chrono24-search result's url field; Chrono24 has no lookup by numeric id alone.
{
"code": 200,
"msg": "OK",
"data": {
"id": "40700313",
"title": "Rolex Datejust 36 Rolex Datejust",
"url": "https://www.chrono24.com/rolex/datejust-36--id40700313.htm",
"brand": "Rolex",
"model": "Datejust",
"reference": "16014",
"price": 3900,
"currency": "USD",
"price_text": "$3,900 [Negotiable]",
"negotiable": true,
"condition": "Used (Very good) The item shows minor signs of wear, such as small, intangible scratches.",
"year": "1981 (Approximation)",
"movement": "Automatic",
"case_material": "Steel",
"case_diameter": "36 mm",
"bracelet_material": "White gold",
"gender": "Men's watch/Unisex",
"location": "United States of America, Alabama",
"availability": "Item is in stock",
"seller_type": "Private Seller",
"images": [
"https://img.chrono24.com/images/uhren/40700313-a.jpg"
],
"specs": [
{
"section": "Basic Info",
"label": "Listing code",
"value": "O8CK96"
},
{
"section": "Case",
"label": "Case diameter",
"value": "36 mm"
}
]
}
}curl "https://api.crawlora.net/api/v1/chrono24/listing?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"