Connect with Gumroad API and get get products, sales, subscribers, verify licence with simple HTTP REST API. With NoCodeAPI you can secure your API keys and bypass the rate limit with NoCode.
Make GET request on this endpoint to list products with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//products
Object | Description |
---|---|
id |
[Optional] Product ID, if you want single product data |
Make GET request on this endpoint to sales with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//sales
Object | Description |
---|---|
after |
[Optional] (date in form YYYY-MM-DD) - Only return sales after this date |
before |
[Optional] (date in form YYYY-MM-DD) - Only return sales before this date |
product_id |
[Optional] Filter sales by this product |
email |
[Optional] Filter sales by this email |
page |
[Optional] Return this page of resultss |
id |
[Optional] Sales ID, if you want single sales data |
Make GET request on this endpoint to subscribers with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//subscribers
Object | Description |
---|---|
product_id |
[Required] Product ID, of which you want subscribers. |
email |
[Optional] Filter subscribers by this email |
Make GET request on this endpoint to single subscriber with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//singleSubscriber
Object | Description |
---|---|
id |
[Required] Subscriber ID |
Make POST request on this endpoint to verify license with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//licenses/verify
Object | Description |
---|---|
product_permalink |
[Required] the unique permalink of the product, if your product URL is "https://gumroad.com/l/QMGY" your product_permalink would be "QMGY |
license_key |
[Required] the license key provided by your customer |
increment_uses_count |
[Optional] "true"/"false", optional, default: "true" |
Make PUT request on this endpoint to enable license with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//licenses/enable
Object | Description |
---|---|
product_permalink |
[Required] the unique permalink of the product, if your product URL is "https://gumroad.com/l/QMGY" your product_permalink would be "QMGY |
license_key |
[Required] the license key provided by your customer |
Make PUT request on this endpoint to disable license with required parameters(if any required).
https://v1.nocodeapi.com//gumroad//licenses/disable
Object | Description |
---|---|
product_permalink |
[Required] the unique permalink of the product, if your product URL is "https://gumroad.com/l/QMGY" your product_permalink would be "QMGY |
license_key |
[Required] the license key provided by your customer |