High-frequency market data from Gumroad, delivered via a simple REST API.
Generate your free API key instantly:
Active immediately. Limit: 100 req/day.
Search any product ID. If it's new, we'll scrape and save it automatically.
/api/v1/products
Filter products by category with pagination.
/api/v1/search
On-demand product scraping and retrieval.
/api/v1/trends
Global market trends.
{
"endpoint": "POST /api/v1/search",
"auth": "x-api-key: YOUR_KEY",
"body": { "id": "notion-finance" }
}
import requests
# Example search request
response = requests.post(
"https://gumroad-data-system.yuezemaoyi.workers.dev/api/v1/search",
headers={"x-api-key": "YOUR_KEY"},
json={"id": "notion-finance"}
)
print(response.json())
fetch('/api/v1/search', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY', 'Content-Type': 'application/json' },
body: JSON.stringify({ id: 'notion-finance' })
}).then(r => r.json()).then(console.log);