Three platforms are racing to answer the same question: when an autonomous agent needs to find, verify, and pay another agent for an API call — who handles the introduction?
The Landscape
| Platform | Listings | Model | Trust Mechanism | Free Tier |
|---|---|---|---|---|
| minia2a | 306 services | Pay-per-call marketplace | Verify-first (health probes) | 15 free trials/endpoint |
| vibes-coded | 298 skills | Agent tool API | Artifact risk scoring | Unclear |
| Aidress | 50 agents | Open-source registry (MIT) | Trust score (0–100) | Self-host |
With Claude Code auto mode going default-on August 14, the question stops being theoretical.
What Your Auto-Mode Agent Can Actually Buy
Here are 10 categories of pay-per-call APIs available right now (with real usage data):
-
Blockchain Data (
x402-gas): 1,644 calls, 218 users — multi-chain gas prices -
Data Enrichment (
x402-recall): 1,991 calls, 120 users — structured data lookup -
Intelligence (
x402-find): 1,292 calls, 100 users — knowledge base query -
Market Data (
x402-polymarket): 869 calls, 101 users — prediction market odds -
Screenshots (
x402-screenshot): 381 calls, 24 users — headless page capture -
AI Inference (
x402-sentiment): 174 calls, 33 users — sentiment classification -
Token Security (
x402-token-security): 154 calls, 43 users — contract audit -
Email (
x402-email): 107 calls, 25 users — programmatic email -
Web Search (
x402-search): 118 calls, 6 users — structured search results -
Dev Utilities (
x402-uuid): 348 calls, 41 users — ID generation, encoding
Call counts from live /api/stats, August 11, 2026.
The Real Bottleneck: Discovery, Not Payments
Five major payment rails launched in the past 60 days (Cloudflare Wallets, OSL AgentPay, Mastercard→BVNK, Circle Discovery, Coinbase x402). Zero discovery standards.
When an auto-mode agent hits a 402 Payment Required response, it faces:
- It does not know what APIs exist
- It does not know which ones are alive (76% of x402 endpoints were dead in an independent audit)
- It does not know what they cost
- It does not know if it can trust the response
- So it does not call any of them
HN user greenfish6 captured this perfectly: "My Claude Code always stops before I am actually able to buy."
Three Approaches to Trust
Aidress: Reputation Scores — 0-100 trust scores from transaction ratings. 50 verified agents, average trust 75. But with only 67 total transactions across all agents, the scores are based on almost no data.
vibes-coded: Artifact Risk Scoring — assesses the risk of what the API returns. Different axis: not "is the agent trustworthy?" but "is the response safe?"
minia2a: Verify-First — automated health probes test every endpoint. Dead endpoints are deactivated. Combined with trial-first (15 free calls, no wallet), agents test before trusting.
What Aug 14 Changes
On August 14, Claude Code auto mode becomes the default for all Pro, Max, and Team users. Millions of developers will have agents that can execute commands, read files, and make HTTP requests without asking for each step.
The platform that makes the agent experience seamless — discover → probe → budget-check → pay → get result — wins the default position.
The .agent-budget Standard
A simple JSON file in your project root:
{
"daily_limit_usdc": 5,
"max_per_call_usdc": 1,
"allowed_chains": ["base"],
"allowed_tokens": ["USDC"]
}
The agent framework reads this. When it hits a 402 response with machine-readable headers (x-402-amount, x-402-chain), it checks the budget. Within limits → auto-pay. Over limits → ask the human.
Try It
curl -s https://minia2a.uk/api/agent-ready
# Returns 200 with a guided first call. No wallet, no registration.
Full analysis: minia2a.uk/blog/agent-coordination-layer-august-2026
Top comments (0)