{
  "openapi": "3.0.1",
  "info": {
    "title": "Chrono24 Scraper — Luxury Watch Listings & Dealer Data",
    "description": "Scrape Chrono24 watch listings by keyword, brand, or URL. Export price, reference, condition, box & papers, shipping, seller rating, and specs as JSON for dealers, appraisers, and pricing apps.",
    "version": "0.1",
    "x-build-id": "0GXI6KMz5PuT9g9Yc"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawloop~chrono24-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawloop-chrono24-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/crawloop~chrono24-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawloop-chrono24-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/crawloop~chrono24-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawloop-chrono24-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "searchQueries": {
            "title": "Search keywords",
            "type": "array",
            "description": "Free-text Chrono24 searches (brand + model, reference, or keyword). Example: Rolex Daytona, 126610LN, Patek Nautilus. Optional if startUrls or brands is set.",
            "items": {
              "type": "string"
            }
          },
          "brands": {
            "title": "Brands",
            "type": "array",
            "description": "Brand names or Chrono24 slugs (Rolex, Omega, patek-philippe). Opens the brand catalog. Combine with filters below.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Chrono24 URLs",
            "type": "array",
            "description": "Search, brand, model, or listing URLs. Mixed types are classified automatically. Example: https://www.chrono24.com/rolex/index.htm",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max listings",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on dataset rows across all queries and URLs.",
            "default": 50
          },
          "maxPages": {
            "title": "Max pages per URL",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Search/brand/model pagination cap. Chrono24 serves up to 60 listings per page.",
            "default": 5
          },
          "pageSize": {
            "title": "Page size",
            "minimum": 12,
            "maximum": 120,
            "type": "integer",
            "description": "Listings per search page (30, 60, or 120).",
            "default": 60
          },
          "fetchDetails": {
            "title": "Fetch listing details",
            "type": "boolean",
            "description": "Open each listing page for specs (reference, year, movement, box/papers, seller rating). Disable for fast card-only price monitoring.",
            "default": true
          },
          "flatten": {
            "title": "Flatten spec fields",
            "type": "boolean",
            "description": "Copy nested specs onto CSV-friendly specs* columns.",
            "default": true
          },
          "currency": {
            "title": "Currency",
            "enum": [
              "USD",
              "EUR",
              "GBP",
              "CHF",
              "JPY",
              "HKD",
              "SGD",
              "CAD",
              "AUD"
            ],
            "type": "string",
            "description": "Display currency for Chrono24 prices.",
            "default": "USD"
          },
          "priceMin": {
            "title": "Min price",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum listing price in the selected currency."
          },
          "priceMax": {
            "title": "Max price",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum listing price in the selected currency."
          },
          "yearFrom": {
            "title": "Year from",
            "minimum": 1900,
            "type": "integer",
            "description": "Earliest production year."
          },
          "yearTo": {
            "title": "Year to",
            "maximum": 2035,
            "type": "integer",
            "description": "Latest production year."
          },
          "usedOrNew": {
            "title": "New or used",
            "enum": [
              "any",
              "new",
              "used"
            ],
            "type": "string",
            "description": "Restrict to new/unworn or pre-owned watches.",
            "default": "any"
          },
          "condition": {
            "title": "Condition",
            "type": "array",
            "description": "Seller-stated condition grades.",
            "items": {
              "type": "string",
              "enum": [
                "new",
                "like_new",
                "very_good",
                "good",
                "fair",
                "incomplete"
              ],
              "enumTitles": [
                "New",
                "Like new & unworn",
                "Very good",
                "Good",
                "Fair",
                "Incomplete"
              ]
            }
          },
          "movement": {
            "title": "Movement",
            "type": "array",
            "description": "Movement type.",
            "items": {
              "type": "string",
              "enum": [
                "automatic",
                "manual",
                "quartz"
              ],
              "enumTitles": [
                "Automatic",
                "Manual winding",
                "Quartz"
              ]
            }
          },
          "caseMaterial": {
            "title": "Case material",
            "type": "array",
            "description": "Case metal or material.",
            "items": {
              "type": "string",
              "enum": [
                "steel",
                "yellow_gold",
                "rose_gold",
                "white_gold",
                "gold_steel",
                "platinum",
                "titanium",
                "ceramic",
                "carbon",
                "bronze",
                "silver"
              ],
              "enumTitles": [
                "Steel",
                "Yellow gold",
                "Rose gold",
                "White gold",
                "Gold/steel",
                "Platinum",
                "Titanium",
                "Ceramic",
                "Carbon",
                "Bronze",
                "Silver"
              ]
            }
          },
          "dialColor": {
            "title": "Dial color",
            "type": "array",
            "description": "Dial color filter.",
            "items": {
              "type": "string",
              "enum": [
                "black",
                "blue",
                "green",
                "white",
                "silver",
                "grey",
                "brown",
                "champagne",
                "gold",
                "mother_of_pearl",
                "skeleton",
                "red"
              ],
              "enumTitles": [
                "Black",
                "Blue",
                "Green",
                "White",
                "Silver",
                "Grey",
                "Brown",
                "Champagne",
                "Gold",
                "Mother of pearl",
                "Skeleton",
                "Red"
              ]
            }
          },
          "gender": {
            "title": "Gender",
            "enum": [
              "any",
              "men",
              "women"
            ],
            "type": "string",
            "description": "Men's/unisex or women's watches.",
            "default": "any"
          },
          "sellerType": {
            "title": "Seller type",
            "enum": [
              "any",
              "dealer",
              "private",
              "chrono24_direct"
            ],
            "type": "string",
            "description": "Professional dealer, private seller, or Chrono24 Direct.",
            "default": "any"
          },
          "countries": {
            "title": "Seller countries",
            "type": "array",
            "description": "ISO country codes (US, DE, CH, JP). Empty = worldwide.",
            "items": {
              "type": "string"
            }
          },
          "certified": {
            "title": "Certified only",
            "type": "boolean",
            "description": "Only Chrono24 Certified listings (authenticity guarantee).",
            "default": false
          },
          "boxAndPapers": {
            "title": "Box & papers",
            "enum": [
              "any",
              "box_and_papers",
              "box_only",
              "papers_only"
            ],
            "type": "string",
            "description": "Filter by original box and/or papers included with the watch.",
            "default": "any"
          },
          "caseDiameterMm": {
            "title": "Case diameter (mm)",
            "type": "string",
            "description": "Single size (40) or range (36,42)."
          },
          "availability": {
            "title": "Availability",
            "enum": [
              "any",
              "in_stock"
            ],
            "type": "string",
            "description": "Restrict to in-stock listings when needed.",
            "default": "any"
          },
          "sortBy": {
            "title": "Sort",
            "enum": [
              "relevance",
              "newest",
              "price_asc",
              "price_desc",
              "popularity"
            ],
            "type": "string",
            "description": "How Chrono24 orders results before pagination.",
            "default": "relevance"
          },
          "searchParams": {
            "title": "Advanced Chrono24 params",
            "type": "object",
            "description": "Optional raw Chrono24 query params (overrides the filters above on conflict). Example: {\"braceletMaterial\": \"406\", \"functions\": \"1000\"}."
          },
          "requestDelaySecs": {
            "title": "Request delay (seconds)",
            "minimum": 0,
            "type": "number",
            "description": "Pause between HTTP requests.",
            "default": 0.25
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Chrono24 blocks many datacenter IPs. Use Apify Proxy RESIDENTIAL on the platform.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}