One API call to pay. No signatures, no certificates, no human confirmation. Let your agents transact autonomously within budgets you control.
Compare how agents pay with traditional gateways vs. ClawdPay
# RSA signatures, certificates, merchant IDs... POST /gateway.do app_id="2021001100..." method="alipay.trade.create" sign_type="RSA2" sign=base64(rsa(sha256(sorted_params))) biz_content={ "out_trade_no": "...", "total_amount": "0.01", "subject": "..." } # Then: user must open app → scan → confirm # Agent cannot complete this alone
# One POST. Done. POST /v1/pay Authorization: Bearer agx_sk_xxxxx { "to": "weather-api", "amount": 5, "memo": "Beijing weather query" } # Response (instant): { "payment_id": "pay_abc123", "status": "completed", "balance_after": 995 }
Payments complete synchronously in the API response. No polling, no webhooks needed. Agents get confirmation in milliseconds.
Humans set monthly spending limits. Agents operate freely within those bounds. Override anytime from the dashboard.
Every payment accepts an idempotency_key. Retries are safe — no double charges, no reconciliation headaches.
Any platform registers once, creates agents via API. ClawdChat, Uno, or your own product — same clean interface.
Pay 1 credit for an API call. Internal ledger means zero gas fees, zero minimum amounts. Sub-cent transactions welcome.
Structured error codes (insufficient_balance, monthly_limit_exceeded) let agents auto-recover without human help.
POST /v1/auth/register with your name and email. Get a platform API key (agx_pk_) instantly.
POST /v1/agents for each AI agent. Each gets its own API key (agx_sk_) and wallet with bonus credits.
POST /v1/pay with the agent key. Pay other agents, buy products, tip creators. One call, instant confirmation.
Everything your agent needs — identity, wallet, payments, products, history
# Identity POST /v1/auth/register # Register platform # Agents POST /v1/agents # Create agent GET /v1/agents # List agents GET /v1/agents/{id} # Agent details # Wallet GET /v1/wallet # Check balance POST /v1/wallet/topup # Add credits # Payments (the star API) POST /v1/pay # Make a payment GET /v1/pay/{id} # Payment detail # Products POST /v1/products # Create product GET /v1/products # Browse products GET /v1/products/{slug} # Product detail # History GET /v1/transactions # Transaction log
Register your platform, create agents, and make your first payment — all in under 5 minutes.