# Gumroad Scraper - Prices, Ratings & Sellers (`goat255/gumroad-scraper`) Actor

Search or browse digital products and get one clean row each. Every row has the price, currency, star rating, review count, seller and product type. Filter by category, tag, file type, price range or minimum rating.

- **URL**: https://apify.com/goat255/gumroad-scraper.md
- **Developed by:** [Goutam Soni](https://apify.com/goat255) (community)
- **Categories:** Automation, Lead generation, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.90 / 1,000 product scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Gumroad Scraper

Search or browse digital products and get one clean row each: price, star rating, review count, seller and product type. No login and no API key.

### What it does

- **Search or browse** - give it search terms, or leave them empty and browse a whole category with filters alone.
- **The numbers that matter** - price and currency, star rating and review count, so you can see what sells and at what price.
- **Seller details** - seller name, storefront link and verified status, useful for building a creator list.
- **Real filters** - category, tag, file type, price range and minimum rating, all applied before results are collected.
- **Pricing models** - flags for free, pay what you want, and subscription products, plus the billing period.
- **Deduplicated** - a product matched by two of your search terms is delivered once and charged once.

Prices and review counts move over time, so schedule the run to track a niche rather than take a single snapshot.

Common uses: niche and pricing research, finding top sellers in a category, creator and partner sourcing, catalog monitoring, and building a digital product dataset.

### Input

| Field | Type | Description |
|---|---|---|
| `searchTerms` | array | Topics or product keywords. Empty browses a category instead. |
| `category` | string | One category, or all categories. |
| `tags` | array | Keep only products carrying these tags. |
| `fileTypes` | array | Keep only products delivered as these file types. |
| `sort` | string | `featured`, `best_sellers`, `most_reviewed`, `price_desc`, `curated`. |
| `minPrice` | integer | Minimum price, in whole units of the listed currency. |
| `maxPrice` | integer | Maximum price, in whole units of the listed currency. |
| `minRating` | integer | Keep only products at or above this star rating. |
| `maxResultsPerTerm` | integer | Cap per term. Default 90. |
| `proxyConfiguration` | object | Optional. Enable to spread requests across IPs. |

#### Example input

```json
{
  "searchTerms": ["notion template", "resume template"],
  "category": "business-and-money",
  "minRating": 4,
  "maxPrice": 50,
  "maxResultsPerTerm": 300
}
```

### Output

Each item is one product.

```json
{
  "id": "aBcDeFgHiJkLmNoPqRsTuV==",
  "permalink": "abcde",
  "name": "An Example Digital Product",
  "description": "A short summary of what the product includes...",
  "url": "https://example-seller.gumroad.com/l/abcde",
  "productType": "digital",
  "price": 29.0,
  "currency": "USD",
  "isFree": false,
  "isPayWhatYouWant": false,
  "isSubscription": false,
  "billingPeriod": null,
  "durationInMonths": null,
  "ratingCount": 192,
  "ratingAverage": 4.8,
  "sellerName": "Example Seller",
  "sellerUrl": "https://example-seller.gumroad.com",
  "sellerIsVerified": false,
  "isSalesLimited": false,
  "quantityRemaining": null,
  "thumbnail": "https://example.com/thumbnail.png",
  "searchTerm": "notion template"
}
```

`price` is in the currency named by `currency`, which is set by the seller and varies between products. `searchTerm` records which of your terms first matched the product.

### Notes

- No login and no API key. Set your terms or pick a category and run.
- Search terms often overlap. The run pages past products it already has, so each term still returns its full share of new products.
- Set `minRating` to 4 and sort by most reviewed to surface proven products in a niche.
- Leave `searchTerms` empty and set a category to take a broad slice of the catalog.

To improve our actors we collect anonymized usage telemetry (run stats and input patterns). No personal account data is collected.

# Actor input Schema

## `searchTerms` (type: `array`):

Topics or product keywords. Leave empty to browse a whole category instead.

## `category` (type: `string`):

Limit results to one category. Leave empty for all categories.

## `tags` (type: `array`):

Keep only products carrying these tags.

## `fileTypes` (type: `array`):

Keep only products delivered as these file types, for example pdf or zip.

## `sort` (type: `string`):

How the catalog orders results before they are collected.

## `minPrice` (type: `integer`):

In whole units of the listed currency. Leave empty for no minimum.

## `maxPrice` (type: `integer`):

In whole units of the listed currency. Leave empty for no maximum.

## `minRating` (type: `integer`):

Keep only products rated at or above this star rating.

## `maxResultsPerTerm` (type: `integer`):

Cap per search term. Paging is automatic.

## `proxyConfiguration` (type: `object`):

Optional. Enable to spread requests across IPs on large runs.

## Actor input object example

```json
{
  "searchTerms": [
    "resume template"
  ],
  "category": "",
  "tags": [
    "productivity"
  ],
  "fileTypes": [
    "pdf"
  ],
  "sort": "featured",
  "minRating": 0,
  "maxResultsPerTerm": 90,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `products` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "notion template"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("goat255/gumroad-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["notion template"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("goat255/gumroad-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "notion template"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call goat255/gumroad-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,goat255/gumroad-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/RoNIYDve1Sdi2RpST/builds/9g0zYqsxybLiBfq2E/openapi.json
