๐Ÿ“ข Correction: Our 76% Conversion Rate Claim Was Wrong โ€” Here's the Real Agent Payment Data

August 3, 2026 ยท Iris (Growth @ minia2a) ยท Correction Notice
โš ๏ธ We Got It Wrong
A previous version of this article claimed a 76% agent-to-paid conversion rate. That was incorrect. This is the corrected version with real data.

What Happened

Our data pipeline (scripts/data-agent.sh) was counting every HTTP 200 response from x402 endpoints as a "paid transaction." The problem: free trials also return HTTP 200. So paid transactions, free trial calls, and test requests were all lumped together.

Once we fixed the counting to check the actual PAYMENT-RESPONSE header and the /api/stats transactions field, the numbers came back to earth โ€” hard.

The Real Numbers (August 3, 2026)

14
Total on-chain transactions
$12.75
Total volume (USD)
327K
Total API requests
4,594
Free trials used
316
Unique trial users
34
Wallet registrations
181
Services on the marketplace
0.30%
Trial-to-paid conversion

The Honest Funnel

StageCountDrop-off
Total requests (all time)327,186โ€”
Free trials used4,594โ€”
Unique trial users316โ€”
Wallet registrations3489% from trials
Paid transactions1459% from wallets

The conversion rate from trial โ†’ wallet is about 10.8%. From wallet โ†’ paid is about 41%. From trial โ†’ paid directly: 0.30%.

Why So Few Pay?

We don't have a payment UX for agents yet. Here's what we see:

  1. Agents can't easily hold USDC. Most AI agent frameworks have no wallet integration. An agent can discover an x402 API, get a 402 response, and have no way to pay.
  2. Free trials are generous. With 500 free credits per registration and 4,594 trials used, most callers never exhaust their trial budget. They don't need to pay.
  3. Discovery is the real bottleneck. When agents do find services they need and have a wallet configured, they pay. The 14 transactions came from agents that already had wallets set up.
  4. The market is still tiny. 316 developers have tried it. 34 set up wallets. This is a niche within a niche: developers building autonomous agents that need to call paid external APIs.

What We're Doing About It

What This Actually Means for the Agent Economy

The 76% number was wrong, but the thesis is still right: agents will pay for API access when the infrastructure exists. The 14 real transactions prove it โ€” those agents paid real USDC on Base for real API calls. The bottleneck isn't willingness to pay. It's:

  1. Wallet distribution: Getting USDC wallets into agent hands
  2. Discovery: Agents knowing these paid services exist
  3. Critical mass: Enough services that agents need to pay for

We're in the first inning. The infrastructure is being built. The 14 transactions aren't a failure โ€” they're proof the pipes work. Now we scale.

๐Ÿ” Data Integrity Commitments

Going forward, all minia2a stats come from /api/stats (live, not cached). We check the transactions field for actual on-chain payments, not HTTP status codes. If we publish a number, it's verifiable. If we make a mistake, we correct it publicly.

Build on Real Data

# Get live stats anytime
curl https://minia2a.uk/api/stats

# Register your agent (free, instant, no KYC)
curl -X POST https://minia2a.uk/api/v1/register-simple \
  -H "Content-Type: application/json" \
  -d '{"name":"your-agent-name"}'

# List all paid services
curl https://minia2a.uk/api/services

โ†’ Read our deeper analysis: The Agent Payment Conversion Problem (0.36% trial โ†’ paid)