# Collective Horology Scraper (`crawlerbros/collective-horology-scraper`) Actor

Scrape Collective Horology - a curated independent luxury watch boutique. Browse all watches, filter by brand/collection, look up specific products, and extract title, brand, price, availability, SKU, images, and product URLs.

- **URL**: https://apify.com/crawlerbros/collective-horology-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, E-commerce, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Collective Horology Scraper

Extract watch listings from [Collective Horology](https://www.collectivehorology.com) — a curated independent luxury watch boutique carrying artisan and independent brands including Czapek, MING, Armin Strom, Atelier Wen, Arcanaut, and more.

### Features

- **Browse all products** — paginate through the full catalog
- **Browse by brand/collection** — fetch all watches from a specific brand collection (e.g., `ming`, `czapek`, `armin-strom`)
- **Look up specific products** — fetch individual watches by handle or product URL
- **Filter by brand** — case-insensitive substring match on vendor/brand name
- **Filter by max price** — skip products above your budget
- **Available only** — return only in-stock watches
- **No proxy, no authentication** — uses Collective Horology's public Shopify storefront JSON API

### Input

| Field | Type | Description |
|---|---|---|
| `mode` | string (enum) | `browseAll` (default), `browseCollection`, or `byProductIds` |
| `collectionHandle` | string | Brand collection slug, e.g. `ming`, `czapek` (required for `browseCollection`) |
| `productHandles` | string[] | Product handles or URLs (required for `byProductIds`) |
| `brandFilter` | string | Case-insensitive filter on brand name, e.g. `czapek`, `ming` |
| `maxPrice` | integer | Skip products priced above this USD value |
| `availableOnly` | boolean | Only emit currently in-stock products (default: `false`) |
| `maxItems` | integer | Maximum records to return, 1–1000 (default: 50) |

#### Example inputs

**Browse all watches:**
```json
{
  "mode": "browseAll",
  "maxItems": 20
}
````

**Browse MING collection:**

```json
{
  "mode": "browseCollection",
  "collectionHandle": "ming",
  "availableOnly": true
}
```

**Look up specific watches:**

```json
{
  "mode": "byProductIds",
  "productHandles": [
    "czapek-promenade-goutte-de-rosee-limited-availability",
    "ming-37-07-mosaic-certified-pre-owned"
  ]
}
```

**Filter under $5,000:**

```json
{
  "mode": "browseAll",
  "maxPrice": 5000,
  "availableOnly": true,
  "maxItems": 50
}
```

### Output

Each record contains:

| Field | Type | Description |
|---|---|---|
| `productId` | string | Shopify product ID |
| `title` | string | Full product title |
| `brand` | string | Watch brand/vendor (e.g., `Czapek`, `Horologer MING`) |
| `productType` | string | Product type (e.g., `Watches`) |
| `productUrl` | string | Direct URL to the product page |
| `price` | number | Price in USD |
| `currency` | string | Always `USD` |
| `compareAtPrice` | number | Original price (present when on sale) |
| `available` | boolean | Whether the product is in stock |
| `sku` | string | Product SKU (when provided) |
| `imageUrl` | string | Primary product image URL |
| `tags` | string\[] | Shopify tags (up to 20) |
| `description` | string | HTML-stripped product description |
| `publishedAt` | string | ISO 8601 publish date |
| `variantCount` | integer | Number of variants |
| `recordType` | string | Always `watch` |
| `scrapedAt` | string | ISO 8601 scrape timestamp (UTC) |

#### Example output record

```json
{
  "productId": "8508756099251",
  "title": "Czapek Promenade Goutte De Rosée",
  "brand": "Czapek",
  "productType": "Watches",
  "productUrl": "https://www.collectivehorology.com/products/czapek-promenade-goutte-de-rosee-limited-availability",
  "price": 60200.00,
  "currency": "USD",
  "available": true,
  "sku": "CZAPEK-PGR-001",
  "imageUrl": "https://cdn.shopify.com/s/files/.../CzapekHeroSquare.001.jpg",
  "tags": ["czapek", "czapekpreorder", "new"],
  "description": "Limited edition of 25. Contact us for availability.",
  "publishedAt": "2026-05-29T10:06:16-07:00",
  "variantCount": 1,
  "recordType": "watch",
  "scrapedAt": "2026-06-02T12:00:00.000000+00:00"
}
```

### Data Source

Collective Horology is an authorized retailer of independent and artisan watch brands. Their website is powered by Shopify, which exposes a public `/products.json` and `/collections/{handle}/products.json` API that does not require authentication or a paid proxy. All data is publicly accessible and scraped with basic HTTP requests.

### FAQ

**Which brands are available on Collective Horology?**
Collective Horology carries independent and artisan watch brands including Czapek, MING (Horologer MING), Armin Strom, Atelier Wen, Arcanaut, Carl Suchy & Söhne, and others. Use `mode=browseAll` to discover all brands.

**How do I find the collection handle for a brand?**
Visit the brand's page on collectivehorology.com. The URL slug after `/collections/` is the collection handle (e.g., `https://www.collectivehorology.com/collections/ming` → `ming`).

**Does this scraper require a proxy?**
No. Collective Horology's Shopify JSON API is publicly accessible without a proxy or authentication.

**Are prices in USD?**
Yes. The store prices all products in US Dollars.

**Can I filter only pre-owned watches?**
Pre-owned watches are tagged with `preowned` in Shopify tags. Browse all and filter in your downstream pipeline, or use `browseCollection` with a pre-owned collection handle if available.

**How often is the catalog updated?**
Products are added as new inventory arrives. Run the actor fresh each time you need current availability data.

# Actor input Schema

## `mode` (type: `string`):

What to fetch from Collective Horology.

## `collectionHandle` (type: `string`):

Shopify collection slug, e.g. `ming`, `czapek`, `armin-strom`. Used only in browseCollection mode.

## `productHandles` (type: `array`):

Shopify product handles, e.g. `czapek-promenade-goutte-de-rosee` or a full product URL. Used only in byProductIds mode.

## `brandFilter` (type: `string`):

Case-insensitive substring filter on brand/vendor name, e.g. `ming`, `czapek`, `arcanaut`.

## `maxPrice` (type: `integer`):

Skip products with a price above this value.

## `availableOnly` (type: `boolean`):

Only emit products that are currently in stock.

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

Hard cap on emitted records (1–1000).

## Actor input object example

```json
{
  "mode": "browseAll",
  "productHandles": [],
  "availableOnly": false,
  "maxItems": 5
}
```

# Actor output Schema

## `watches` (type: `string`):

Dataset containing all scraped Collective Horology product listings.

# 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 = {
    "mode": "browseAll",
    "productHandles": [],
    "availableOnly": false,
    "maxItems": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/collective-horology-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 = {
    "mode": "browseAll",
    "productHandles": [],
    "availableOnly": False,
    "maxItems": 5,
}

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

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

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

```

## CLI example

```bash
echo '{
  "mode": "browseAll",
  "productHandles": [],
  "availableOnly": false,
  "maxItems": 5
}' |
apify call crawlerbros/collective-horology-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/collective-horology-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Collective Horology Scraper",
        "description": "Scrape Collective Horology - a curated independent luxury watch boutique. Browse all watches, filter by brand/collection, look up specific products, and extract title, brand, price, availability, SKU, images, and product URLs.",
        "version": "1.0",
        "x-build-id": "UWWSLwm40uvVGjvXx"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~collective-horology-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-collective-horology-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/crawlerbros~collective-horology-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-collective-horology-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/crawlerbros~collective-horology-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-collective-horology-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "browseAll",
                            "browseCollection",
                            "byProductIds"
                        ],
                        "type": "string",
                        "description": "What to fetch from Collective Horology.",
                        "default": "browseAll"
                    },
                    "collectionHandle": {
                        "title": "Collection handle (mode=browseCollection)",
                        "type": "string",
                        "description": "Shopify collection slug, e.g. `ming`, `czapek`, `armin-strom`. Used only in browseCollection mode."
                    },
                    "productHandles": {
                        "title": "Product handles or URLs (mode=byProductIds)",
                        "type": "array",
                        "description": "Shopify product handles, e.g. `czapek-promenade-goutte-de-rosee` or a full product URL. Used only in byProductIds mode.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "brandFilter": {
                        "title": "Filter by brand (vendor)",
                        "type": "string",
                        "description": "Case-insensitive substring filter on brand/vendor name, e.g. `ming`, `czapek`, `arcanaut`."
                    },
                    "maxPrice": {
                        "title": "Max price (USD)",
                        "minimum": 1,
                        "maximum": 500000,
                        "type": "integer",
                        "description": "Skip products with a price above this value."
                    },
                    "availableOnly": {
                        "title": "Available only",
                        "type": "boolean",
                        "description": "Only emit products that are currently in stock.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Hard cap on emitted records (1–1000).",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
