Nixon Watches Scraper
Pricing
from $3.00 / 1,000 results
Nixon Watches Scraper
Scrape the Nixon watch catalog - surf and skate-inspired timepieces and accessories. Browse collections, filter by product type, price range, and availability. Extract full product details including price, SKU, images, and tags.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 months ago
Last modified
Categories
Share
Extract watch and accessory listings from Nixon — a California-based watch and accessories brand. Browse the full catalog, filter by product type, price, and availability, or look up specific products.
Features
- Browse all products — paginate through Nixon's full Shopify catalog
- Browse by collection — fetch all items from a specific Nixon collection (e.g.,
watches,accessories,limited) - Look up specific products — fetch individual products by handle or product URL
- Filter by product type — case-insensitive substring match on product type (e.g.,
watch,wallet,bag) - Filter by max price — skip products above your budget
- Available only — return only in-stock items
- No proxy, no authentication — uses Nixon's public Shopify storefront JSON API
Input
| Field | Type | Description |
|---|---|---|
mode | string (enum) | browseAll (default), browseCollection, or byProductIds |
collectionHandle | string | Collection slug, e.g. watches, accessories (required for browseCollection) |
productHandles | string[] | Product handles or URLs (required for byProductIds) |
productTypeFilter | string | Case-insensitive filter on product type, e.g. watch, wallet |
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 Nixon products:
{"mode": "browseAll","maxItems": 20}
Browse watches collection only:
{"mode": "browseCollection","collectionHandle": "watches","availableOnly": true}
Look up specific products:
{"mode": "byProductIds","productHandles": ["the-time-teller","the-sentry"]}
All wallets under $50:
{"mode": "browseAll","productTypeFilter": "wallet","maxPrice": 50,"maxItems": 50}
Output
Each record contains:
| Field | Type | Description |
|---|---|---|
productId | string | Shopify product ID |
title | string | Full product title |
brand | string | Brand/vendor (typically Nixon) |
productType | string | Product type (e.g., Watches, Accessories, Wallets) |
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[] | Cleaned Shopify tags (internal Algolia/bucket tags filtered out, max 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
{"productId": "4567890123456","title": "The Time Teller","brand": "Nixon","productType": "Watches","productUrl": "https://www.nixon.com/products/the-time-teller","price": 100.00,"currency": "USD","available": true,"imageUrl": "https://cdn.shopify.com/s/files/.../time-teller.jpg","tags": ["analog", "minimalist", "bestseller"],"publishedAt": "2025-01-15T00:00:00-08:00","variantCount": 3,"recordType": "watch","scrapedAt": "2026-06-02T12:00:00.000000+00:00"}
Data Source
Nixon is a California-based watch and accessory brand founded in 1997. Their website runs on Shopify, exposing a public storefront JSON API at /products.json and /collections/{handle}/products.json. No authentication or paid proxy is required.
FAQ
What does Nixon sell?
Nixon sells analog and digital watches, clocks, bags, wallets, belts, and accessories. The productTypeFilter input lets you narrow results to a specific category.
How do I filter by product type?
Use productTypeFilter with a substring like watch, wallet, or bag. The filter is case-insensitive and matches partial strings.
Why are some tags missing from the output?
Nixon's Shopify tags include internal Algolia search tags (algolia_*) and price bucket tags (*-bucket) that are not useful for end users. The scraper strips these automatically.
Does this scraper require a proxy? No. Nixon's Shopify JSON API is publicly accessible without a proxy or authentication.
Are prices in USD? Yes. Nixon.com prices in US Dollars.
What variants does Nixon use?
Nixon products often have multiple color and size variants. The price field reflects the minimum price across all variants. variantCount shows the total number of variants.