Gumroad
Your Toolhouse AI Worker can connect to Gumroad using 7 specialized tools.
Auth Connection
This service requires an auth connection to use its tools. You can set this up in your Toolhouse dashboard under Auth Connections.
Tools (7)
Gumroad Get Resource Subscriptions
Gumroad Get Resource SubscriptionsIntegration name: GUMROAD_GET_RESOURCE_SUBSCRIPTIONS
Tool to show all active subscriptions of the user for the input resource. Use when you need to review existing webhooks before adding a new one.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
resource_name
string
✅
"sale"
Name of the resource to list subscriptions for. One of the eight supported event types.
Gumroad Get Sales
Gumroad Get SalesIntegration name: GUMROAD_GET_SALES
Tool to retrieve all successful sales by the authenticated user; excludes failed charges, abandoned carts, and page views — conversion rates cannot be derived from this data. Use when you need to list your Gumroad sales, optionally filtering by email, date range, product, or pagination. For high sales volumes, combine product_id and/or after/before filters with page to avoid large unfiltered result sets.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
page
integer
1
Page number for paginated results; minimum is 1.
after
string
—
Only include sales after this ISO8601 date/time (e.g., '2023-01-01T00:00:00Z').
email
string
"customer@example.com"
Filter sales by customer email address.
before
string
—
Only include sales before this ISO8601 date/time.
product_id
string
"prod_ABC123"
Filter sales by a specific product ID.
Gumroad Get User
Gumroad Get UserIntegration name: GUMROAD_GET_USER
Tool to retrieve the authenticated user's data. Use when you need the current user's profile details after authentication.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
No parameters required.
Gumroad List Products
Gumroad List ProductsIntegration name: GUMROAD_LIST_PRODUCTS
Tool to retrieve all products for the authenticated Gumroad account. Use when you need product IDs for downstream operations like license verification, subscriber retrieval, or offer-code management.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
No parameters required.
Gumroad Subscribe To Resource
Gumroad Subscribe To ResourceIntegration name: GUMROAD_SUBSCRIBE_TO_RESOURCE
Tool to subscribe to a resource. Use when you need to receive real-time event webhooks after creating your webhook endpoint.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
post_url
string
✅
"https://example.com/webhook"
Your endpoint URL that will receive HTTP POST notifications.
resource_name
string
✅
"sale"
One of the eight supported Gumroad resources to subscribe to.
Gumroad Unsubscribe From Resource
Gumroad Unsubscribe From ResourceIntegration name: GUMROAD_UNSUBSCRIBE_FROM_RESOURCE
Tool to unsubscribe from a resource. Use after verifying the subscription ID exists to remove webhook.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
resource_subscription_id
string
✅
"G_-mnBf9b1j9A7a4ub4nFQ=="
Unique ID of the resource subscription to delete
Gumroad Verify License
Gumroad Verify LicenseIntegration name: GUMROAD_VERIFY_LICENSE
Tool to verify a Gumroad license key against a specific product. Use when you need to check if a license key is valid, check usage count, or verify membership entitlement for software licensing or gated content.
Parameters
Your Toolhouse AI worker will automatically pass these parameters as input when the tool is called.
product_id
string
✅
"prod_ABC123"
The product ID to verify the license against. Required for products created on or after Jan 9, 2023.
license_key
string
✅
"ABCD-EFGH-IJKL-MNOP"
The license key to verify.
increment_uses_count
boolean
—
Whether to increment the uses count for the license. Defaults to true if not specified.