# Scrape Gumroad Products by Price Range

**Use case:** 

Scrape Gumroad products by price range and collect pricing, ratings, seller information, product URLs, thumbnails, file types, and descriptions.

## Input

```json
{
  "category": "all_products",
  "fileType": [],
  "sort": "trending",
  "maxProducts": 100,
  "minPrice": 10,
  "maxPrice": 100,
  "minRating": 0,
  "productUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

## Output

```json
{
  "id": {
    "label": "Product ID",
    "format": "text"
  },
  "permalink": {
    "label": "Permalink",
    "format": "text"
  },
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "seller.id": {
    "label": "Seller ID",
    "format": "text"
  },
  "seller.name": {
    "label": "Seller Name",
    "format": "text"
  },
  "seller.avatar_url": {
    "label": "Seller Avatar",
    "format": "image"
  },
  "seller.profile_url": {
    "label": "Seller Profile",
    "format": "link"
  },
  "ratings.count": {
    "label": "Rating Count",
    "format": "number"
  },
  "ratings.average": {
    "label": "Average Rating",
    "format": "number"
  },
  "thumbnail_url": {
    "label": "Product Image",
    "format": "image"
  },
  "native_type": {
    "label": "File Type",
    "format": "text"
  },
  "quantity_remaining": {
    "label": "Remaining Quantity",
    "format": "number"
  },
  "is_sales_limited": {
    "label": "Limited Sales",
    "format": "boolean"
  },
  "price_cents": {
    "label": "Price (Cents)",
    "format": "number"
  },
  "currency_code": {
    "label": "Currency",
    "format": "text"
  },
  "is_pay_what_you_want": {
    "label": "Pay What You Want",
    "format": "boolean"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "duration_in_months": {
    "label": "Duration (Months)",
    "format": "number"
  },
  "recurrence": {
    "label": "Recurrence",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  }
}
```

## About this Actor

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