GumRadar Data API

High-frequency market data from Gumroad, delivered via a simple REST API.

🔑 Get API Key

Generate your free API key instantly:

Active immediately. Limit: 100 req/day.

🔍 Test Search (Instant Data)

Search any product ID. If it's new, we'll scrape and save it automatically.

🚀 Endpoints

GET /api/v1/products

Filter products by category with pagination.

POST /api/v1/search

On-demand product scraping and retrieval.

GET /api/v1/trends

Global market trends.

💻 Implementation Samples

{
  "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);