Nixon Watches Scraper avatar

Nixon Watches Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Nixon Watches Scraper

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

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 months ago

Last modified

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

FieldTypeDescription
modestring (enum)browseAll (default), browseCollection, or byProductIds
collectionHandlestringCollection slug, e.g. watches, accessories (required for browseCollection)
productHandlesstring[]Product handles or URLs (required for byProductIds)
productTypeFilterstringCase-insensitive filter on product type, e.g. watch, wallet
maxPriceintegerSkip products priced above this USD value
availableOnlybooleanOnly emit currently in-stock products (default: false)
maxItemsintegerMaximum 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:

FieldTypeDescription
productIdstringShopify product ID
titlestringFull product title
brandstringBrand/vendor (typically Nixon)
productTypestringProduct type (e.g., Watches, Accessories, Wallets)
productUrlstringDirect URL to the product page
pricenumberPrice in USD
currencystringAlways USD
compareAtPricenumberOriginal price (present when on sale)
availablebooleanWhether the product is in stock
skustringProduct SKU (when provided)
imageUrlstringPrimary product image URL
tagsstring[]Cleaned Shopify tags (internal Algolia/bucket tags filtered out, max 20)
descriptionstringHTML-stripped product description
publishedAtstringISO 8601 publish date
variantCountintegerNumber of variants
recordTypestringAlways watch
scrapedAtstringISO 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.