# Pepper Network Laptop Deals Scraper

**Use case:** 

Scrape laptop deals from Dealabs, HotUKDeals, and MyDealz with normalized prices, merchants, temperatures, and URLs.

## Input

```json
{
  "searchQueries": [
    "laptop"
  ],
  "sites": [
    "dealabs",
    "hotukdeals",
    "mydealz"
  ],
  "startUrls": [
    {
      "url": "https://www.hotukdeals.com/search?q=laptop"
    },
    {
      "url": "https://www.dealabs.com/search?q=smartphone"
    }
  ],
  "maxItems": 60,
  "maxPagesPerSource": 2,
  "includeExpired": false,
  "requestDelayMs": 500
}
```

## Output

```json
{
  "site": {
    "label": "Site"
  },
  "title": {
    "label": "Title"
  },
  "priceText": {
    "label": "Price"
  },
  "temperatureText": {
    "label": "Temperature"
  },
  "merchant": {
    "label": "Merchant"
  },
  "category": {
    "label": "Category"
  },
  "commentCount": {
    "label": "Comments"
  },
  "isExpired": {
    "label": "Expired"
  },
  "dealUrl": {
    "label": "Deal URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Pepper Network Deals Scraper](https://apify.com/automation-lab/pepper-network-deals-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/pepper-network-deals-scraper) to learn more, explore other use cases, and run it yourself.