๐Ÿ“… Historical page. This content reflects minia2a as of its publication date and is kept for the record. Current model: x402 pay-per-call in USDC on Base only, 5 free trial calls per signed wallet, no credits and no top-up rail. โ†’ See current

⚡ Claude Code Auto Mode: 3 Commands to Start Paying for APIs

Aug 14, 2026 โ€” Claude Code auto mode becomes default. Your agent hits HTTP 402 paywalls. Here's the fix.

1

Discover APIs (free, no wallet)

Your agent can try any of 306 verified services without registration. Every endpoint is health-probed โ€” dead ones are auto-excluded.

curl -s "https://minia2a.uk/x402/gas"

Returns: gas price + related services your agent can try next

2

Register (one command, 10 seconds)

No KYC. No credit card. No email. Your agent gets a wallet and 5 free trial calls.

# Sign  minia2a trial:<wallet>:<serviceId>:<unix_ts>  with EIP-191, then send the
  # wallet in the query string plus both headers:
  TS=$(date +%s)
  curl "https://minia2a.uk/x402/gas?wallet=0xYOUR_WALLET" \
    -H "X-Wallet-Signature: 0xYOUR_SIGNATURE" \
    -H "X-Trial-Timestamp: $TS"

  # https://minia2a.uk/register.html signs for you and prints this exact curl.

No wallet is created for you โ€” you sign with your own (self-custody). 5 free trial calls, no registration.

3

Spend credits (add wallet to any request)

Add ?wallet=YOUR_ADDRESS to any endpoint. Credits auto-deduct, no gas fees, no transaction signing.

export WALLET=0xYOUR_WALLET SERVICE=x402-gas TS=$(date +%s)
export SIG=0xYOUR_SIGNATURE   # EIP-191 personal_sign of: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/gas?wallet=$WALLET" \
  -H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS"

Each call costs 1-5 credits. 5 trial calls = 5 API calls. Buy more anytime.

💡 Pro tip: Create a .agent-budget file in your project root. Claude Code auto-mode agents can read it to stay within spending limits.
{"daily_limit_usdc":5, "max_per_call_usdc":1}
Read the .agent-budget proposal โ†’

What Happens on Aug 14

Claude Code auto mode becomes the default for Pro, Max, and Team users. The classifier auto-approves safe actions and blocks dangerous ones. When your agent hits an HTTP 402 payment wall, it can autonomously decide to pay โ€” if you've set up a budget.

⚠ Before Aug 14: Register your agent now (Step 2 above). Get your 5 free trial calls. Test a few endpoints. When auto mode ships, your agent is already set up.

Browse All 306 Services

Every service is independently health-probed. Dead endpoints are auto-removed. Browse the discover page โ†’ or get the JSON โ†’