Gumroad Creator Profile Scraper — Products, Prices & Bio avatar

Gumroad Creator Profile Scraper — Products, Prices & Bio

Pricing

Pay per usage

Go to Apify Store
Gumroad Creator Profile Scraper — Products, Prices & Bio

Gumroad Creator Profile Scraper — Products, Prices & Bio

Scrape complete Gumroad creator profiles — username, bio, all products with titles, prices, descriptions, cover images, product type, ratings, and sales count. Focused on creator-level data, not just product search. Supports both gumroad.com/username and username.gumroad.com URL formats.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Venkatesh Sekar

Venkatesh Sekar

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Gumroad Creator Profile Scraper (Enhanced)

Scrape complete Gumroad creator profiles — focused on creator-level data rather than product search. Existing Apify Gumroad scrapers crawl the discover page; this actor takes a list of creator usernames and returns their full profile + every product.

What it scrapes

Per creator

FieldDescription
usernameGumroad username
profile_urlCanonical subdomain URL (e.g. https://nathanbarry.gumroad.com/)
creator_nameDisplay name from profile
bioCreator bio / about text
avatar_urlProfile picture URL
followersFollower count (if shown)
social_linksDict of platform → URL (twitter, instagram, youtube, etc.)
product_countTotal number of products found
productsArray of product records (see below)

Per product (nested in products)

FieldDescription
product_urlFull product page URL
titleProduct title
priceNumeric price (0.0 for free products)
price_strRaw price string (e.g. "$12", "Pay what you want")
is_freeBoolean
product_typeInferred type: ebook, course, template, etc.
descriptionProduct description text
cover_imageCover/preview image URL
ratingNumeric rating (if shown)
num_ratingsNumber of ratings
num_salesSales / buyer count (if shown)

Input

{
"creators": ["nathanbarry", "sahilbloom"],
"maxConcurrency": 5,
"proxyConfiguration": { "useApifyProxy": true }
}
  • creators (required): usernames, gumroad.com/username URLs, or username.gumroad.com URLs.
  • maxConcurrency: parallel creator fetches (default 5, max 20).
  • proxyConfiguration: standard Apify proxy config.

How it works

  1. Each creator username is resolved to their username.gumroad.com subdomain (following Gumroad's 301 redirect automatically).
  2. The profile page is parsed for creator metadata and all product page links.
  3. Each product page is fetched concurrently (up to 3 per creator) and parsed for full product details.
  4. One dataset record per creator is pushed, containing the full profile and nested products list.

Notes

  • Both gumroad.com/username (old canonical) and username.gumroad.com (new subdomain) formats are accepted and normalised automatically.
  • Gumroad does not expose a public unauthenticated API; all data is scraped from rendered HTML.
  • Product type is inferred from page text (ebook, course, template, etc.) when not explicitly marked.