# Bob's Watches Rolex Inventory Monitor

**Use case:** 

Scrape Bob's Watches Rolex listings for product URLs, names, prices, availability, condition, reference numbers, SKUs, and images.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bobswatches.com/rolex/"
    }
  ],
  "maxItems": 50,
  "maxPagesPerUrl": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "referenceNumber": {
    "label": "Reference",
    "format": "text"
  },
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "color": {
    "label": "Color",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Bob's Watches Listings Scraper](https://apify.com/automation-lab/bobs-watches-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bobs-watches-listings-scraper) to learn more, explore other use cases, and run it yourself.