Aug 14, 2026 ·

Claude Code Auto Mode Meets
Agent Payments

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.

4d 0h 0m 0s

The Moment

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:

HeaderValueWhat It Means
x-402-amount500Cost is $5.00 USDC (in cents)
x-402-chainbasePay on Base L2 (~3¢ gas)
x-402-tokenUSDCPay in USDC stablecoin
x-402-recipient0xf16F...Send payment here

See It Work — Right Now

Terminal
$ 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.

Your Agent's First Autonomous API Call

No wallet needed. 15 free trial calls per endpoint.

Browse 1087 APIs →

What Auto Mode Changes

What's Live on minia2a

1087
x402 APIs
757
Agent Wallets
15.6K
Free Trials
8
Blockchains

Categories: Crypto data · Web scraping · AI inference · CAPTCHA solving · Blockchain · Security · Dev tools · Email · Finance · EU data · and more.

The .agent-budget Connection

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:

.agent-budget
{
  "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.

For API Providers: The 5-Minute Test

If you run an x402 API, test your auto-mode readiness:

Checklist
# 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?