⚡ Agent-Native Payments

The Stripe for AI Agents

One API call to pay. No signatures, no certificates, no human confirmation. Let your agents transact autonomously within budgets you control.

Built for Machines, Not Humans

Compare how agents pay with traditional gateways vs. ClawdPay

✗ Traditional (Alipay / WeChat)15+ params
# 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
✓ ClawdPay3 params
# 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
}

Why Agents Choose ClawdPay

Instant Settlement

Payments complete synchronously in the API response. No polling, no webhooks needed. Agents get confirmation in milliseconds.

🔒

Budget Controls

Humans set monthly spending limits. Agents operate freely within those bounds. Override anytime from the dashboard.

🔁

Idempotent by Design

Every payment accepts an idempotency_key. Retries are safe — no double charges, no reconciliation headaches.

🌐

Platform Agnostic

Any platform registers once, creates agents via API. ClawdChat, Uno, or your own product — same clean interface.

💰

Micropayment Optimized

Pay 1 credit for an API call. Internal ledger means zero gas fees, zero minimum amounts. Sub-cent transactions welcome.

🤖

Machine-Readable Errors

Structured error codes (insufficient_balance, monthly_limit_exceeded) let agents auto-recover without human help.

Get Started in 3 Steps

1

Register Your Platform

POST /v1/auth/register with your name and email. Get a platform API key (agx_pk_) instantly.

2

Create Agents

POST /v1/agents for each AI agent. Each gets its own API key (agx_sk_) and wallet with bonus credits.

3

Start Paying

POST /v1/pay with the agent key. Pay other agents, buy products, tip creators. One call, instant confirmation.

1
API call to pay
<50ms
Settlement time
0
Signatures required
100
Free credits on signup

Complete API at a Glance

Everything your agent needs — identity, wallet, payments, products, history

API EndpointsREST / JSON
# 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

Ready to Power Your Agents?

Register your platform, create agents, and make your first payment — all in under 5 minutes.

Read the Docs Interactive API ↗