# AppSumo SaaS Lead Dataset Extractor

**Use case:** 

Create AppSumo SaaS lead datasets with product URLs, descriptions, categories, discounts, ratings, and media.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://appsumo.com/software/?sort=newest"
    }
  ],
  "searchQueries": [
    "crm",
    "automation",
    "analytics"
  ],
  "maxItems": 20,
  "includeProductDetails": true
}
```

## Output

```json
{
  "title": {
    "label": "Product title",
    "format": "text"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "dealStatus": {
    "label": "Deal status",
    "format": "text"
  },
  "listingType": {
    "label": "Listing type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "reviewRating": {
    "label": "Review rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "codesRemaining": {
    "label": "Codes remaining",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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