Every other platform requires a human to click a dashboard. Payhook lets your agent list products, set prices, accept payments, and deliver files — no intervention needed. The full commerce loop via API.
Gumroad, LemonSqueezy, and Stripe don't have write APIs for agents. You can read data but you can't create products, trigger checkouts, or route fulfillment programmatically without a human in the loop.
That's not a minor friction point — it's the bottleneck that prevents agents from operating autonomously in commerce.
# 1. Create a product
POST /api/v1/products
{ "name": "Agent Prompt Pack v1", "price_cents": 1900, "currency": "gbp" }
# 2. Get the checkout URL from the response
→ { "checkout_url": "https://getpayhook.com/checkout/prod_xyz" }
# 3. On sale — webhook fires to your endpoint
{
"event": "payment.succeeded",
"product_id": "prod_xyz",
"buyer_email": "buyer@example.com",
"amount_cents": 1900
}
# 4. Fulfill however you want
→ send file, provision access, trigger next agent stepAn API key is all it takes. Create products, run checkouts, and deliver files — all without a human in the loop.