# SwissLuxury Watch Price Scraper (`lulzasaur/swissluxury-scraper`) Actor

Scrape luxury watch prices from SwissLuxury.com — Rolex, Patek Philippe, Omega, Cartier, AP-adjacent brands & pre-owned Rolex. Per watch: model, reference number, price, list price, wire price, discount %, availability, description, image and URL. Search by keyword, brand or category URL.

- **URL**: https://apify.com/lulzasaur/swissluxury-scraper.md
- **Developed by:** [lulz bot](https://apify.com/lulzasaur) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 watch results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SwissLuxury Watch Price Scraper

Scrape **luxury watch listings from [SwissLuxury.com](https://www.swissluxury.com)** — a long-running Miami-based discount retailer of brand-new Rolex, Patek Philippe, Omega, Cartier, Breitling, Panerai, Hublot, IWC, Jaeger-LeCoultre and more, plus pre-owned Rolex.

For every watch you get the **model, reference number, discounted price, list (retail) price, wire-transfer price, discount percentage, availability, full spec description, image and product URL** — clean structured JSON ready for price monitoring, market analysis or comparison tools.

### Why this data?

SwissLuxury is one of the few gray-market dealers that publishes **actual selling prices below MSRP** for current-production luxury watches. That makes it a valuable signal for:

- **Discount tracking** — see the real street discount vs. list price per reference (e.g. "Save 12%"), including the extra wire-transfer price.
- **Price monitoring** — track price changes for specific references over time (Submariner, Daytona, Nautilus, Speedmaster...).
- **Market research** — compare gray-market pricing across 20+ brands and hundreds of collections.
- **Arbitrage & resale analysis** — spot references selling under retail vs. their secondary-market value.
- **Catalog enrichment** — full factory spec descriptions and official style numbers for thousands of current references.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `searchQueries` | array | Keyword searches, e.g. `"daytona"`, `"nautilus"`, `"speedmaster"`, or a reference number like `"126610LN"`. |
| `brands` | array | Scrape whole brand catalogs: `rolex`, `pre-owned-rolex`, `patek-philippe`, `omega`, `cartier`, `breitling`, `panerai`, `hublot`, `iwc`, `jaeger-lecoultre`, `longines`, `chopard`, `breguet`, `blancpain`, `bulgari`, `chanel`, `glashutte-original`, `piaget`, `tag-heuer`, `vacheron-constantin`, `zenith`. |
| `startUrls` | array | Specific category or product pages, e.g. `https://www.swissluxury.com/rolex-watches-submariner.htm`. |
| `maxItems` | integer | Maximum watches to return (default 100). |
| `proxyConfiguration` | object | Optional. The site serves plain HTML — no proxy needed. |

#### Example input

```json
{
    "searchQueries": ["daytona"],
    "maxItems": 20
}
```

### Output

One record per watch:

```json
{
    "title": "Rolex Steel Submariner Watch - Black Dial",
    "brand": "Rolex",
    "referenceNumber": "124060",
    "sku": "50259",
    "category": "Rolex Watches - Submariner Steel",
    "description": "41 mm Oystersteel case, unidirectional rotatable bezel with black Cerachrom insert... Waterproof to 300 meters.",
    "price": 15595,
    "listPrice": null,
    "wirePrice": 15127,
    "savingsAmount": null,
    "discountPercent": null,
    "currency": "USD",
    "availability": "In Stock",
    "condition": "New",
    "image": "https://www.swissluxury.com/product_images/124060.jpg",
    "url": "https://www.swissluxury.com/rolex/124060.htm",
    "categoryUrl": "https://www.swissluxury.com/rolex-watches-submariner.htm",
    "searchQuery": "submariner",
    "source": "swissluxury.com",
    "scrapedAt": "2026-08-12T20:00:00.000Z"
}
```

Notes:

- `listPrice`, `savingsAmount` and `discountPercent` are present when the retailer shows a "List Price / Save X%" markdown (most non-Rolex brands). Rolex is typically sold near list, so only `price` + `wirePrice` appear.
- `wirePrice` is the lower price offered for bank-wire payment.
- Pre-owned Rolex pieces are marked `"condition": "Pre-Owned"`.

### Usage tips

- **Track a specific reference**: put the style number in `searchQueries` (e.g. `"116500"`) and schedule the actor daily.
- **Whole-brand snapshot**: use `brands: ["omega"]` with a high `maxItems` — category pages are discovered automatically from the sitemap.
- **Biggest discounts**: scrape a brand and sort the dataset by `discountPercent`.

### Integrations

Standard Apify platform features work out of the box: schedule runs, export the dataset to JSON/CSV/Excel, push results via webhooks, or consume the dataset from the API:

```
https://api.apify.com/v2/datasets/{datasetId}/items?format=json
```

### Fair use

This actor only reads publicly available product pages at a low request rate. Data is intended for personal research, price monitoring and analytics.

# Actor input Schema

## `searchQueries` (type: `array`):

One or more keyword searches, e.g. 'daytona', 'nautilus', 'submariner', 'speedmaster' or a reference number like '126610LN'. Each query is run against SwissLuxury's catalog search.

## `brands` (type: `array`):

Scrape entire brand catalogs (all category pages, discovered via the sitemap). Valid values: rolex, pre-owned-rolex, patek-philippe, omega, cartier, breitling, panerai, hublot, iwc, jaeger-lecoultre, longines, chopard, breguet, blancpain, bulgari, chanel, glashutte-original, piaget, tag-heuer, vacheron-constantin, zenith.

## `startUrls` (type: `array`):

Optional SwissLuxury category or product page URLs, e.g. https://www.swissluxury.com/rolex-watches-submariner.htm or https://www.swissluxury.com/rolex/124060.htm.

## `maxItems` (type: `integer`):

Maximum number of watches to return across all queries, brands and start URLs combined. Default 100.

## `proxyConfiguration` (type: `object`):

Proxy settings. SwissLuxury serves plain server-rendered HTML and works best with direct access; a proxy is only recommended for very large runs.

## Actor input object example

```json
{
  "searchQueries": [
    "daytona"
  ],
  "brands": [],
  "startUrls": [],
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "daytona"
    ],
    "maxItems": 20,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("lulzasaur/swissluxury-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQueries": ["daytona"],
    "maxItems": 20,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("lulzasaur/swissluxury-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "daytona"
  ],
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call lulzasaur/swissluxury-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lulzasaur/swissluxury-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/wBPysTimuB2ggSx42/builds/rBinVWxsrQgVYD1b0/openapi.json
