Discover/Gumroad API
live

Gumroad APIgumroad.com

Access Gumroad marketplace data via API. Search products by keyword, category, price, and rating. Fetch product details, seller profiles, and category taxonomy.

Endpoint health
verified 6d ago
get_discover_categories
search_products
get_seller_profile
get_product_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
20d ago

What is the Gumroad API?

The Gumroad API exposes 4 endpoints covering product search, full product details, seller profiles, and the complete category taxonomy from the Gumroad digital marketplace. With search_products alone you can filter by keyword, category slug, price range, minimum rating, and sort order, getting back up to 36 products per page including ratings, pricing, seller metadata, and aggregated file-type and tag facets.

Try it
Page number for pagination (1-based).
Sort order for results.
Search keyword (e.g. 'Python', 'Blender addon').
Minimum rating score (1-5).
Category slug from get_discover_categories (e.g. 'software-development', '3d', 'design').
Price range filter as 'min-max' in dollars (e.g. '0-50', '10-100').
api.parse.bot/scraper/1db76dd0-6bba-4f3d-9aa6-3f0665c3d24b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1db76dd0-6bba-4f3d-9aa6-3f0665c3d24b/search_products?page=1&sort=best_sellers&query=Python&rating=4&category=drawing-and-painting&price_range=0-100' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace gumroad-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.gumroad_marketplace_api import Gumroad, Sort, Product, Category, SellerProfile

gumroad = Gumroad()

# Browse categories
for category in gumroad.categories.list(limit=5):
    print(category.label, category.slug, category.parent_key)

# Search for best-selling Python products
for product in gumroad.products.search(query="Python", sort=Sort.BEST_SELLERS, limit=3):
    print(product.name, product.price, product.currency, product.rating_average)

    # Get full details for the product
    detail = product.details()
    print(detail.description, detail.seller.name, detail.seller.is_verified, detail.ratings.average)

# Fetch a seller profile directly
profile = gumroad.sellerprofiles.get(username="twostraws")
print(profile.name, profile.bio, profile.subdomain)
for seller_product in profile.products:
    print(seller_product.name, seller_product.price, seller_product.rating_average)
All endpoints · 4 totalmissing one? ·

Search and browse the Gumroad marketplace. Supports query keywords, category filtering, sort order, price range, and minimum rating. Returns paginated results with up to 36 products per page. When no query or category is provided, returns a general browse of all products in the given sort order.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
sortstringSort order for results.
querystringSearch keyword (e.g. 'Python', 'Blender addon').
ratingintegerMinimum rating score (1-5).
categorystringCategory slug from get_discover_categories (e.g. 'software-development', '3d', 'design').
price_rangestringPrice range filter as 'min-max' in dollars (e.g. '0-50', '10-100').
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "tags": "array of tag objects with key and doc_count",
    "total": "integer total number of matching products",
    "products": "array of product objects with id, name, permalink, url, price, currency, rating_average, rating_count, seller_name, seller_url, thumbnail_url, type, and description_preview",
    "file_types": "array of file type objects with key and doc_count"
  },
  "sample": {
    "data": {
      "page": 1,
      "tags": [
        {
          "key": "python",
          "doc_count": 647
        }
      ],
      "total": 2976,
      "products": [
        {
          "id": "2o_ZYZmirlKtnGe54bm4Ng==",
          "url": "https://amuletteam.gumroad.com/l/amulet?layout=discover&recommended_by=search",
          "name": "Amulet Editor",
          "type": "membership",
          "price": 10,
          "currency": "usd",
          "permalink": "qmwjk",
          "seller_url": "https://amuletteam.gumroad.com?recommended_by=search",
          "seller_name": "Amulet Team",
          "rating_count": 51,
          "thumbnail_url": "https://public-files.gumroad.com/uwti31zk04hx1tpvkk754xqx9kx3",
          "rating_average": 4.4,
          "description_preview": "Amulet is a Minecraft world editor..."
        }
      ],
      "file_types": [
        {
          "key": "zip",
          "doc_count": 1164
        }
      ]
    },
    "status": "success"
  }
}

About the Gumroad API

Product Search and Browsing

The search_products endpoint accepts a query string, a category slug (sourced from get_discover_categories), a price_range filter in 'min-max' dollar format, a rating floor from 1–5, and a sort parameter. Results are paginated at up to 36 products per page and each product object includes id, name, permalink, url, price, currency, rating_average, rating_count, seller_name, and seller_url. The response also surfaces facet arrays — tags and file_types — each with a key and doc_count, which are useful for building filter UIs or analyzing the shape of a category. Omitting query and category returns a general browse across all Gumroad listings.

Product and Seller Detail

get_product_details takes a full Gumroad product page URL and returns the product's name, HTML description, price, currency, type (e.g. 'digital' or 'membership'), recurrence for subscription products, variants, and file_info. The seller field includes id, name, avatar_url, profile_url, and is_verified. The ratings object breaks down the count, average, and per-star percentages. get_seller_profile takes a username and returns the seller's name, bio, avatar_url, subdomain, and a products array with per-product pricing and rating fields.

Category Taxonomy

get_discover_categories requires no inputs and returns the full category hierarchy Gumroad uses on its Discover page. Each category object has a key, label, slug, and parent_key. Top-level categories have parent_key set to null; subcategories reference their parent's key. The slugs returned here are what search_products accepts as the category parameter, so calling this endpoint first is the correct way to enumerate valid filter values.

Reliability & maintenanceVerified

The Gumroad API is a managed, monitored endpoint for gumroad.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gumroad.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official gumroad.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Gumroad product comparison tool using price, rating_average, and rating_count from search_products.
  • Aggregate seller portfolios by fetching multiple usernames through get_seller_profile and comparing product counts and ratings.
  • Construct a category-browsing directory by combining get_discover_categories with paginated search_products calls per slug.
  • Monitor new or top-rated digital products in a niche category by polling search_products with a fixed category and sort order.
  • Enrich a digital-product database with full HTML descriptions, variant lists, and file metadata via get_product_details.
  • Identify popular file types and tags within a category using the file_types and tags facet arrays in search_products responses.
  • Verify seller credentials and profile completeness using the is_verified flag and bio fields from get_seller_profile.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Gumroad have an official developer API?+
Yes. Gumroad offers an official OAuth-based API documented at https://app.gumroad.com/api. It covers managing your own products, sales, subscribers, and payouts — data scoped to an authenticated seller account. The Parse API covers the public discovery surface: searching listings, reading product detail pages, and browsing seller profiles without requiring a Gumroad account.
What does get_product_details return beyond what search_products includes?+
search_products returns summary fields like name, price, rating_average, and seller_name. get_product_details adds the full HTML description, the ratings breakdown by star percentage, variants, file_info, the product type (digital vs. membership), recurrence for subscription products, and a richer seller object including is_verified and avatar_url. You supply the product's full URL as the url parameter.
Are purchase history, transaction data, or private product analytics available?+
Not currently. The API covers publicly visible marketplace data: product listings, ratings, seller profiles, and category structure. You can fork it on Parse and revise it to add an endpoint targeting any other public Gumroad page that exposes additional data.
What happens when a seller has an empty products array in get_seller_profile?+
The products array reflects only what a seller has configured in their public profile sections. Sellers who have not set up profile product sections will return an empty array even if they have active listings. To retrieve their products, use search_products with the seller's name as the query, or call get_product_details with a known product URL.
Does the search_products endpoint support fetching beyond the first page of results?+
Yes. The response includes a total field with the full result count, and you pass an integer page parameter (1-based) to retrieve subsequent pages. Each page returns up to 36 products. There is no cursor or token — increment page until you have covered total results.
Page content last updated . Spec covers 4 endpoints from gumroad.com.
Related APIs in MarketplaceSee all →
g2a.com API
Search for game keys and get real-time pricing, seller ratings, and detailed product information from G2A's marketplace. Browse available categories and find the best deals on digital game licenses from verified sellers.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
amazon.com API
Search and browse Amazon products, reviews, offers, and deals, then manage your shopping cart all through a single integration. Get detailed product information, seller profiles, and best sellers to compare prices and make informed purchasing decisions.
daraz.pk API
Browse and extract product data from Daraz Pakistan (daraz.pk). Search products by keyword or category, retrieve full product details, explore the category tree, and list all products for a given seller.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
chewy.com API
Search and browse pet products from Chewy.com, view detailed product information including prices and specifications, and read customer reviews to make informed purchasing decisions. Access comprehensive product catalogs and ratings all through a single integrated interface.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.