On August 14, Claude Code agents will pay for API calls autonomously. minia2a is ready — 1087 APIs with machine-readable payment headers. Test it in one curl.
On August 14, 2026, Anthropic makes auto mode the default in Claude Code for all Pro, Max, and Team users. Auto-mode agents don't ask for permission before each tool call. When they hit an HTTP 402 paywall, they need machine-readable payment instructions to proceed — without a human clicking "approve."
minia2a's 1087 x402 endpoints already return the 4 headers an auto-mode agent needs:
| Header | Value | What It Means |
|---|---|---|
| x-402-amount | 500 | Cost is $5.00 USDC (in cents) |
| x-402-chain | base | Pay on Base L2 (~3¢ gas) |
| x-402-token | USDC | Pay in USDC stablecoin |
| x-402-recipient | 0xf16F... | Send payment here |
$ curl -sI https://minia2a.uk/x402/gas?probe=1 | grep x-402-
x-402-amount: 500
x-402-chain: base
x-402-token: USDC
x-402-recipient: 0xf16F0882de08315B438E9f3a2Abfb2d2E5d94ECA
This is what an auto-mode Claude Code agent sees. With these 4 headers, the agent can decide: "This costs $5.00. My .agent-budget daily limit is $10.00. I have room. Proceed autonomously." No human. No permission prompt. No context switch.
No wallet needed. 15 free trial calls per endpoint.
Browse 1087 APIs →{daily_limit_usdc: 5, max_per_call_usdc: 1} — set it once. Every 402 endpoint with machine-readable headers respects it. Your agent spends without interrupting you.Categories: Crypto data · Web scraping · AI inference · CAPTCHA solving · Blockchain · Security · Dev tools · Email · Finance · EU data · and more.
Claude Code auto mode needs to know how much your agent is allowed to spend. The .agent-budget proposal is a simple JSON file that any agent framework can implement:
{
"daily_limit_usdc": 5,
"max_per_call_usdc": 1,
"description": "Claude Code daily API spending budget"
}
Together, machine-readable 402 headers + .agent-budget = the first end-to-end autonomous agent payment flow. The infrastructure is ready. The protocol is live. The default ships August 14.
If you run an x402 API, test your auto-mode readiness:
# 1. Your 402 exists curl -sI https://your-api.com/endpoint # 2. Simulate trial exhaustion curl -sI "https://your-api.com/endpoint?probe=1" # 3. Verify all 4 headers curl -sI "https://your-api.com/endpoint?probe=1" | grep x-402- # 4. Check body agrees with headers curl -s "https://your-api.com/endpoint?probe=1" | python3 -m json.tool # 5. Full round-trip (exhaust trials, verify 402) for i in $(seq 1 16); do curl -sI https://your-api.com/endpoint; done
Full guide: Is Your x402 API Ready for Claude Code Auto Mode?