# Gumroad Scraper — Products, Discover & Creator Storefronts (`crawloop/gumroad-scraper`) Actor

Gumroad scraper for Discover search, category and tag listings, creator storefronts, and product URLs. Prices, ratings, sales counts, variants, and seller profiles. HTTP-only public data, no login.

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

## Pricing

from $3.50 / 1,000 product results

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Gumroad Scraper — Products, Discover & Creator Storefronts

> **Disclaimer:** Unofficial tool — not affiliated with, sponsored by, or endorsed by Gumroad, Inc or its affiliates. Data is read from publicly accessible pages only. No login. You are responsible for complying with applicable law (including GDPR where personal data appears) and the site’s terms. No warranty on accuracy or availability. Provided for informational and research use.

**Gumroad scraper** for Apify — a **Gumroad products scraper** for **Discover search**, **category / tag listings**, **creator storefronts**, and **product URLs**. Built for **digital product research**, **creator competitor tracking**, and **affiliate offer discovery**. Export prices, ratings, sales counts, variants, and seller profiles as JSON. A practical **Gumroad API alternative** for Python, Node.js, Sheets, and **MCP** / AI assistants. HTTP-only (no browser).

> **Crawloop Marketplace & E-commerce Suite** — marketplace scrapers for product discovery and pricing intelligence.

| **Gumroad Scraper** ◄── *you are here* | [Creative Market Scraper](https://apify.com/crawloop/creative-market-scraper) | [Etsy Scraper](https://apify.com/crawloop/etsy-scraper) | [Unity Asset Store Scraper](https://apify.com/crawloop/unity-asset-store-scraper) |
| :---: | :---: | :---: | :---: |
| Gumroad Discover, storefronts & products | Fonts, templates, shops & license tiers | Handmade / POD search, shops, reviews | Game assets, prices, publishers |

Also see: [Amazon Search Scraper](https://apify.com/crawloop/amazon-search-scraper) · [eBay Sold Listings Scraper](https://apify.com/crawloop/ebay-sold-listings-scraper) · [eBay Active Listings Scraper](https://apify.com/crawloop/ebay-active-listings-scraper)

### When to use this Actor

- **Gumroad Discover scraper** — keyword, tag, or category listings with price, rating, and seller
- **Gumroad product scraper** — paste `/l/permalink` URLs for sales count, variants, description, and rating histogram
- **Creator storefront scraper** — every public product on a Gumroad profile (subdomain or custom domain)
- **Niche & affiliate research** — Notion templates, presets, courses, memberships, 3D assets
- **Gumroad API alternative** — public-page dataset when you need structured rows, not a seller OAuth key
- **Change monitor** — scheduled runs that emit only new or changed products (price, ratings, sales)

### When not to use this Actor

- **Private purchases, payouts, or customer emails** — public pages only; no login
- **Seller-owned Gumroad API** (your own products/subscribers) — use Gumroad’s official OAuth API instead
- **Written review text / seller replies** — v1 exports rating averages, counts, and (in details mode) the star histogram. Review bodies are not public without a session
- **Creative Market fonts/templates, Etsy handmade catalogs, or Unity packages** — use the sibling scrapers linked above
- **Unlimited uncapped crawls** — set `maxItems` / `maxPages` to control spend

### Key features

- **All-in-one Gumroad data** — Discover search, tags, categories, storefronts, and product URLs in one Actor
- **HTTP-first** — Inertia `data-page` JSON on Discover/storefronts + public `{product}.json` details. No headless browser
- **Sales counts & variants** — optional details pass adds `salesCount`, options/tiers, covers, attributes, refund policy
- **Typed dataset rows** — `recordType`: `product` with seller, price, ratings, and source
- **Filters** — price, rating, file type, native type (digital, course, membership, …), free/PWYW, verified sellers
- **Monitor mode** — remember products between runs; emit only `new` or `changed`
- **Caps that save budget** — `maxItems`, `maxPages` (36 products per Discover page)
- **Proxy optional** — public catalog usually works without Apify Proxy

### Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `searchQueries` | Array | — | Discover keyword queries |
| `tags` | Array | — | Discover tag slugs |
| `categories` | Array | — | Taxonomy slugs (`design`, `software-development`, `3d`, …) |
| `startUrls` | Array | — | Discover, product, or storefront URLs (auto-detected) |
| `productUrls` | Array | — | Direct `/l/permalink` product links |
| `sellerUrls` | Array | — | Creator storefront URLs |
| `sort` | String | featured | `newest` / `hot_and_new` / `best_sellers` / `highest_rated` |
| `minPrice` / `maxPrice` | Number | `0` | Price filter (`0` = off) |
| `minRating` | Number | `0` | Minimum average stars |
| `fileTypes` | Array | — | Discover file-type filter (`pdf`, `zip`, `mp4`, …) |
| `nativeTypes` | Array | — | `digital`, `course`, `ebook`, `membership`, … |
| `freeOnly` | Boolean | `false` | Free or pay-what-you-want only |
| `payWhatYouWantOnly` | Boolean | `false` | PWYW listings only |
| `sellerVerifiedOnly` | Boolean | `false` | Verified creators only |
| `scrapeDetails` | Boolean | `false` | Extra `.json` request per Discover/storefront hit (sales, description, options) |
| `includeHtmlDescription` | Boolean | `false` | Add `descriptionHtml` when details are scraped |
| `maxItems` | Integer | `50` | Hard product cap (`0` = unlimited) |
| `maxPages` | Integer | `0` | Discover page cap per query (`0` = unlimited) |
| `monitorMode` | Boolean | `false` | Emit only new & changed rows |
| `monitorKey` | String | `default` | Isolated monitor memory per saved search |
| `requestDelaySecs` | Number | `0.2` | Delay between HTTP requests |
| `proxyConfiguration` | Object | off | Enable only if you see 403/429 |

Provide **at least one** of: `searchQueries`, `tags`, `categories`, `startUrls`, `productUrls`, `sellerUrls`.

#### Input example — Discover search

```json
{
  "searchQueries": ["notion template"],
  "sort": "best_sellers",
  "maxItems": 50,
  "scrapeDetails": false
}
```

#### Input example — product URLs + details

```json
{
  "productUrls": [
    "https://goodsnooze.gumroad.com/l/macwhisper"
  ],
  "scrapeDetails": true,
  "maxItems": 10
}
```

#### Input example — creator storefront

```json
{
  "sellerUrls": [
    "https://goodsnooze.gumroad.com"
  ],
  "maxItems": 100
}
```

### Output Format

| Field | Description |
| :--- | :--- |
| `recordType` | `product` |
| `id` / `permalink` | Gumroad product id and URL slug |
| `name` / `url` | Title and canonical product URL |
| `nativeType` | `digital`, `course`, `membership`, … |
| `price` / `priceCents` / `currencyCode` / `priceFormatted` | Listed price |
| `isPayWhatYouWant` | Buyer-set price |
| `ratingsAverage` / `ratingsCount` / `ratingsPercentages` | Stars (histogram needs details) |
| `salesCount` | Public sales count (details or product URL) |
| `sellerName` / `sellerUrl` / `sellerVerified` | Creator |
| `sellerTwitter` / `sellerYoutubeChannelId` | Public socials from the storefront |
| `description` / `options` / `attributes` / `coverUrls` | Details pass |
| `source` | `discover` / `storefront` / `product_url` |
| `monitorChange` | `new` or `changed` when monitor mode is on |
| `scrapedAt` | UTC timestamp |

Discover cards do **not** include `salesCount`. Turn on `scrapeDetails` (or pass `productUrls`) to fill sales, description, variants, and the rating histogram.

```json
{
  "recordType": "product",
  "permalink": "macwhisper",
  "name": "MacWhisper",
  "url": "https://goodsnooze.gumroad.com/l/macwhisper",
  "nativeType": "digital",
  "priceCents": 0,
  "currencyCode": "eur",
  "ratingsAverage": 4.5,
  "ratingsCount": 2618,
  "salesCount": 570054,
  "sellerName": "Jordi Bruin",
  "sellerVerified": true,
  "source": "product_url"
}
```

### Use cases

- Validate a digital-product niche (templates, presets, courses) before you build
- Track competitor prices, ratings, and public sales counts on a schedule
- Build an affiliate shortlist from Discover best sellers in a category
- Export a creator’s full public catalog from their Gumroad storefront
- Feed MCP / AI assistants a structured Gumroad dataset instead of HTML

### Integration examples

#### Node.js

```javascript
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });

const run = await client.actor('crawloop/gumroad-scraper').call({
  searchQueries: ['notion template'],
  maxItems: 50,
  scrapeDetails: false,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.slice(0, 5));
```

#### Python

```python
import os
from apify_client import ApifyClient

client = ApifyClient(os.environ["APIFY_TOKEN"])
run = client.actor("crawloop/gumroad-scraper").call(
    run_input={
        "searchQueries": ["notion template"],
        "maxItems": 50,
        "scrapeDetails": False,
    }
)
items = client.dataset(run["defaultDatasetId"]).list_items().items
print(items[:5])
```

#### cURL

```bash
curl "https://api.apify.com/v2/acts/crawloop~gumroad-scraper/runs?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"searchQueries":["notion template"],"maxItems":20}'
```

### MCP and AI assistants

Use this Actor from AI tools via [Apify MCP](https://docs.apify.com/platform/integrations/mcp).
Connect your Apify account, then call this Actor by its Store ID `crawloop/gumroad-scraper`.

Example prompts:

- "Run Gumroad Scraper for search query notion template, max 30 products, and return name, price, rating, and URL as JSON"
- "Scrape the Gumroad storefront for a creator URL and list every public product with price and ratings"
- "Chain Gumroad Scraper then [Creative Market Scraper](https://apify.com/crawloop/creative-market-scraper) to compare digital products vs design-asset listings in the same niche"

### Suite next step

After a Gumroad catalog dump, run [Creative Market Scraper](https://apify.com/crawloop/creative-market-scraper) for fonts, templates, and license-price comps, or [Etsy Scraper](https://apify.com/crawloop/etsy-scraper) for handmade / POD. Game assets: [Unity Asset Store Scraper](https://apify.com/crawloop/unity-asset-store-scraper).

### FAQ

**Does this use the official Gumroad API?**
No. The seller API is for your own products. This Actor reads the same public Discover, storefront, and product JSON any visitor gets in the browser.

**Why is sales count empty?**
Discover cards omit sales. Enable `scrapeDetails` or pass `productUrls`.

**Can I scrape custom-domain Gumroad shops?**
Yes — paste the shop URL in `sellerUrls` or `startUrls`. The Actor detects the Inertia `Users/Show` storefront payload.

**Do I need a proxy?**
Usually not. Turn on Apify Proxy only if Discover starts returning 403/429.

**Are written reviews included?**
Not in v1. You get rating average, count, and (with details) the star histogram.

### Related Actors

- [Creative Market Scraper](https://apify.com/crawloop/creative-market-scraper) — fonts, templates, shops, licenses
- [Etsy Scraper](https://apify.com/crawloop/etsy-scraper) — search, shops, reviews
- [Unity Asset Store Scraper](https://apify.com/crawloop/unity-asset-store-scraper) — packages, prices, monitor
- [Amazon Search Scraper](https://apify.com/crawloop/amazon-search-scraper) — marketplace SERP
- [eBay Sold Listings Scraper](https://apify.com/crawloop/ebay-sold-listings-scraper) — sold comps

# Actor input Schema

## `searchQueries` (type: `array`):

Keywords for Gumroad Discover (e.g. notion template, lightroom presets, ai course).

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

Discover tag slugs (e.g. notion, design, photography).

## `categories` (type: `array`):

Discover taxonomy slugs from the Discover URL, e.g. design, software-development, 3d, business-and-money, drawing-and-painting.

## `startUrls` (type: `array`):

Discover, product (/l/permalink), or creator storefront URLs. Custom-domain Gumroad shops are supported.

## `productUrls` (type: `array`):

Direct product links such as https://seller.gumroad.com/l/permalink.

## `sellerUrls` (type: `array`):

Creator profile URLs (subdomain or custom domain). Every public product on the storefront is collected.

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

Discover sort. Leave default for featured/relevance.

## `minPrice` (type: `number`):

Keep products at or above this amount (listing currency). 0 = no floor.

## `maxPrice` (type: `number`):

Keep products at or below this amount. 0 = no ceiling. Also sent to Discover as max\_price.

## `minRating` (type: `number`):

Minimum average star rating (1–5). Products with no ratings are dropped when set. 0 = off.

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

Discover file-type filter (pdf, zip, mp4, mp3, epub, png, …).

## `nativeTypes` (type: `array`):

Keep these native types only. Empty = all.

## `freeOnly` (type: `boolean`):

Keep free or pay-what-you-want products only.

## `payWhatYouWantOnly` (type: `boolean`):

Keep products where the buyer sets the price.

## `sellerVerifiedOnly` (type: `boolean`):

Keep products from verified Gumroad sellers.

## `scrapeDetails` (type: `boolean`):

Fetch each product's public .json for sales count, description, rating histogram, variants/options, covers, and refund policy. Extra request per product. Product URLs always include details.

## `includeHtmlDescription` (type: `boolean`):

Add descriptionHtml in addition to stripped description text. Only filled when details are scraped.

## `maxItems` (type: `integer`):

Hard cap across all inputs. 0 = unlimited.

## `maxPages` (type: `integer`):

Each Discover page is 36 products. 0 = no page cap (still limited by Max products).

## `monitorMode` (type: `boolean`):

Remember products between runs and emit only NEW or CHANGED rows (price, ratings, sales count, name).

## `monitorKey` (type: `string`):

Distinct key per saved search so monitors do not share state.

## `requestDelaySecs` (type: `number`):

Throttle between HTTP requests.

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

Public Discover and product JSON usually work without a proxy. Enable Apify Proxy only if you hit HTTP 403/429.

## Actor input object example

```json
{
  "searchQueries": [
    "notion template"
  ],
  "tags": [],
  "categories": [],
  "startUrls": [],
  "productUrls": [],
  "sellerUrls": [],
  "sort": "",
  "minPrice": 0,
  "maxPrice": 0,
  "minRating": 0,
  "fileTypes": [],
  "nativeTypes": [],
  "freeOnly": false,
  "payWhatYouWantOnly": false,
  "sellerVerifiedOnly": false,
  "scrapeDetails": false,
  "includeHtmlDescription": false,
  "maxItems": 50,
  "maxPages": 0,
  "monitorMode": false,
  "monitorKey": "default",
  "requestDelaySecs": 0.2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Default dataset product items.

# 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 = {
    "searchQueries": [
        "notion template"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/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 = { "searchQueries": ["notion template"] }

# Run the Actor and wait for it to finish
run = client.actor("crawloop/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 '{
  "searchQueries": [
    "notion template"
  ]
}' |
apify call crawloop/gumroad-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawloop/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/rwb9Vm2owaK1Sd1KM/builds/1uSeYQAatMNeh0DiK/openapi.json
