Skip to main content
GET
/
api
/
v1
/
scraper
/
chrono24
/
product
Chrono24 Product
curl --request GET \
  --url https://app.retailed.io/api/v1/scraper/chrono24/product \
  --header 'x-api-key: <x-api-key>'
import requests

url = "https://app.retailed.io/api/v1/scraper/chrono24/product"

headers = {"x-api-key": "<x-api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};

fetch('https://app.retailed.io/api/v1/scraper/chrono24/product', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.retailed.io/api/v1/scraper/chrono24/product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.retailed.io/api/v1/scraper/chrono24/product"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<x-api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.retailed.io/api/v1/scraper/chrono24/product")
.header("x-api-key", "<x-api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.retailed.io/api/v1/scraper/chrono24/product")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'

response = http.request(request)
puts response.read_body
{
    "sku": "126610LN",
    "name": "Rolex Submariner Date Ceramic 41mm 126610LN Unworn 2023",
    "brand": "Rolex",
    "price": {
        "amount": 16410,
        "currency": "USD",
        "negotiable": true
    },
    "images": [
        "https://img.chrono24.com/images/uhren/16516640-wuzf1q8zn9o64ozyf2e1bw8d-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-eusat2gcdgwsmyvnt17skdx5-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-t0umtrzp0400qyoj70arj5iw-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-5j5ifnc4naxgsili9yl39wpu-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-cu5ejjuyr4hdr0zbgmg7nkv1-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-5q2itr8w5yx3oq81bl4ji4mg-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-xcc23127eeq697qi4ui4c0td-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516741-s1fz2um1kqv2h0ggcfnzu43x-ExtraLarge.jpg"
    ],
    "seller": {
        "name": "Watch Limit",
        "badges": [
            {
                "type": "trusted-seller",
                "level": null,
                "description": "Trusted SellerThis badge is only awarded to dealers who meet all the legal requirements and our own strict internal criteria."
            },
            {
                "type": "watch-check",
                "level": "Level3",
                "description": "PunctualityThe seller ships 96% of their items on time or earlier."
            },
            {
                "type": "response",
                "level": "Level3",
                "description": "Response TimeThe seller generally replies within 1 hour."
            },
            {
                "type": "growth",
                "level": "Level3",
                "description": "SalesThe seller has sold 144 items in the last 90 days."
            }
        ],
        "rating": 5,
        "country": "US",
        "shipping": {
            "availability": "Item is in stock",
            "delivery_time": "Anticipated delivery: 2/10 - 2/24",
            "delivery_details": "The item is in stockand ready to ship within1 - 3 days. Expect to receive the item2 - 12 daysafter that."
        },
        "verified": false,
        "reviews_count": "1835"
    },
    "shipping": {
        "location": "United States of America",
        "delivery_time": "Anticipated delivery: 2/10 - 2/24"
    },
    "description": "Reference number 126610LN Steel Automatic Year 2023 Watch with original box and original papers Watch with original box Watch with original papers 41mm",
    "specifications": {
        "dial": "Black",
        "brand": "Rolex",
        "clasp": "Fold clasp",
        "model": "Submariner Date",
        "price": "$16,410 [Negotiable]",
        "gender": "Men's watch/Unisex",
        "crystal": "Sapphire crystal",
        "location": "United States of America, New York, New York",
        "movement": "Automatic",
        "condition": "Like new & unwornThe item shows no signs of wear such as scratches or dents, and it has not been worn. The item has not been polished.",
        "availability": "Item is in stock",
        "listing_code": "9U0ED0",
        "case_diameter": "41 mmTry it on",
        "case_material": "Steel",
        "dial_numerals": "No numerals",
        "bezel_material": "Ceramic",
        "bracelet_color": "Steel",
        "clasp_material": "Steel",
        "caliber_movement": "3235",
        "reference_number": "126610LN(Submariner Ceramic Bezel Dark)",
        "bracelet_material": "Steel",
        "scope_of_delivery": "Original box, original papers",
        "year_of_production": "2023"
    }
}
x-api-key
string
required
Parameter defines the Retailed private key to use.

Parameters

query
string
Chrono24 Product URL

Response

object
Product Object
{
    "sku": "126610LN",
    "name": "Rolex Submariner Date Ceramic 41mm 126610LN Unworn 2023",
    "brand": "Rolex",
    "price": {
        "amount": 16410,
        "currency": "USD",
        "negotiable": true
    },
    "images": [
        "https://img.chrono24.com/images/uhren/16516640-wuzf1q8zn9o64ozyf2e1bw8d-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-eusat2gcdgwsmyvnt17skdx5-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-t0umtrzp0400qyoj70arj5iw-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-5j5ifnc4naxgsili9yl39wpu-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-cu5ejjuyr4hdr0zbgmg7nkv1-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-5q2itr8w5yx3oq81bl4ji4mg-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516640-xcc23127eeq697qi4ui4c0td-ExtraLarge.jpg",
        "https://img.chrono24.com/images/uhren/16516741-s1fz2um1kqv2h0ggcfnzu43x-ExtraLarge.jpg"
    ],
    "seller": {
        "name": "Watch Limit",
        "badges": [
            {
                "type": "trusted-seller",
                "level": null,
                "description": "Trusted SellerThis badge is only awarded to dealers who meet all the legal requirements and our own strict internal criteria."
            },
            {
                "type": "watch-check",
                "level": "Level3",
                "description": "PunctualityThe seller ships 96% of their items on time or earlier."
            },
            {
                "type": "response",
                "level": "Level3",
                "description": "Response TimeThe seller generally replies within 1 hour."
            },
            {
                "type": "growth",
                "level": "Level3",
                "description": "SalesThe seller has sold 144 items in the last 90 days."
            }
        ],
        "rating": 5,
        "country": "US",
        "shipping": {
            "availability": "Item is in stock",
            "delivery_time": "Anticipated delivery: 2/10 - 2/24",
            "delivery_details": "The item is in stockand ready to ship within1 - 3 days. Expect to receive the item2 - 12 daysafter that."
        },
        "verified": false,
        "reviews_count": "1835"
    },
    "shipping": {
        "location": "United States of America",
        "delivery_time": "Anticipated delivery: 2/10 - 2/24"
    },
    "description": "Reference number 126610LN Steel Automatic Year 2023 Watch with original box and original papers Watch with original box Watch with original papers 41mm",
    "specifications": {
        "dial": "Black",
        "brand": "Rolex",
        "clasp": "Fold clasp",
        "model": "Submariner Date",
        "price": "$16,410 [Negotiable]",
        "gender": "Men's watch/Unisex",
        "crystal": "Sapphire crystal",
        "location": "United States of America, New York, New York",
        "movement": "Automatic",
        "condition": "Like new & unwornThe item shows no signs of wear such as scratches or dents, and it has not been worn. The item has not been polished.",
        "availability": "Item is in stock",
        "listing_code": "9U0ED0",
        "case_diameter": "41 mmTry it on",
        "case_material": "Steel",
        "dial_numerals": "No numerals",
        "bezel_material": "Ceramic",
        "bracelet_color": "Steel",
        "clasp_material": "Steel",
        "caliber_movement": "3235",
        "reference_number": "126610LN(Submariner Ceramic Bezel Dark)",
        "bracelet_material": "Steel",
        "scope_of_delivery": "Original box, original papers",
        "year_of_production": "2023"
    }
}