# MyDealz Hot Deals Extractor

**Use case:** 

Extract MyDealz hot deal listings with prices, merchants, hotness scores, comments, and URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.mydealz.de/hot"
    }
  ],
  "searchTerms": [
    "lego",
    "iphone"
  ],
  "maxItems": 100,
  "maxPagesPerUrl": 4,
  "requestDelayMs": 750
}
```

## Output

```json
{
  "dealId": {
    "label": "Deal ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Deal URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "oldPrice": {
    "label": "Old price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "merchant": {
    "label": "Merchant",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "temperature": {
    "label": "Temperature",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "voucherCode": {
    "label": "Voucher code",
    "format": "text"
  },
  "expired": {
    "label": "Expired",
    "format": "boolean"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  }
}
```

## About this Actor

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