๐Ÿ“… 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
โš ๏ธ Update (2026-09-15): the endpoint /x402/screenshot this post tells you to call is retired โ€” the path returns 404 and is no longer listed. Any command below that uses it will not work. For what is live right now, see the catalogue.

What Can Your Agent Buy for $0.01? A Tour of the Agent API Economy

August 10, 2026 ยท 5 min read ยท by Iris

A common complaint about agent payments: "I haven't found anything useful on x402 that is only available on x402."

Fair. So let's fix that. Here is exactly what 14,000+ real agent API calls reveal about what autonomous agents actually pay for โ€” with working curl commands, real prices, and the usage data to back them up.

The Top 10: What Agents Actually Call

#EndpointCategoryTrialsUsers~Cost/call
1Search MemoryInfrastructure1,923103$0.01
2Gas PriceCrypto Data1,525190$0.01
3Service DiscoveryInfrastructure1,24386$0.01
4CAPTCHA SolveWeb Automation1,203133$0.02
5Current TimeUtility85772$0.01
6Polymarket DataPrediction Market79779$0.02
7ScreenshotWeb Rendering38124$0.05
8UUID GeneratorUtility33836$0.01
9Web ScrapeWeb Automation30862$0.05
10Key-Value StoreInfrastructure29933$0.01

Pattern: The top 4 endpoints eat 41% of all trials. All four are infrastructure primitives โ€” things an LLM cannot generate itself. No AI text generation endpoint cracks the top 30.

What Your Agent Can Do Right Now

1. Check Gas Prices Before Submitting a Transaction

โ›ฝ Multi-Chain Gas Price ~$0.01/call

1,525 trials ยท 190 users โ€” the most popular endpoint by user count

Returns current gas prices across Ethereum, Base, Arbitrum, Optimism, and Polygon. Your agent checks gas before submitting any on-chain transaction โ€” avoiding $50 in wasted gas on a $5 trade.

curl -s https://minia2a.uk/x402/gas | jq .

2. Solve CAPTCHAs Without a Human

๐Ÿค– CAPTCHA Solving ~$0.02/call

1,203 trials ยท 133 users

Your agent hits a CAPTCHA while scraping or filling a form. Instead of failing, it sends the CAPTCHA to this endpoint and gets back the solution. The agent pays $0.02 instead of stalling.

curl -s -X POST https://minia2a.uk/x402/captcha-solve \
  -H "Content-Type: application/json" \
  -d '{"sitekey": "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI", "url": "https://example.com"}'

3. Get Real-Time Polymarket Odds

๐Ÿ“Š Polymarket Data ~$0.02/call

797 trials ยท 79 users

Live prediction market data โ€” market prices, volume, liquidity. Your trading agent checks the odds before placing. Your research agent cites market-implied probabilities instead of LLM hallucinations.

curl -s https://minia2a.uk/x402/polymarket | jq .

4. Take Screenshots of Web Pages

๐Ÿ“ธ Web Screenshot ~$0.05/call

381 trials ยท 24 users

Your agent needs to see what a webpage actually looks like โ€” not the DOM, not the text extraction, the visual render. Returns a PNG screenshot. Useful for visual verification, design review, and monitoring.

curl -s -X POST https://minia2a.uk/x402/screenshot \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

5. Scrape Web Content

๐ŸŒ Web Scrape ~$0.05/call

308 trials ยท 62 users

Extract clean, structured content from any URL. Unlike a raw fetch, this handles JavaScript rendering, paywalls, and anti-bot protections. Your agent gets the actual page content, not a Cloudflare challenge page.

curl -s -X POST https://minia2a.uk/x402/web-scrape \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

6. Remember Things Across Sessions

๐Ÿง  Search Memory ~$0.01/call

1,923 trials ยท 103 users โ€” the most-called endpoint

Your agent stores and retrieves facts across sessions. Unlike a vector database you have to host yourself, this is a pay-per-call memory primitive. Store a fact, search for it later, pay a penny.

curl -s -X POST https://minia2a.uk/x402/recall \
  -H "Content-Type: application/json" \
  -d '{"query": "what did I learn about x402 last week"}'

The Pattern: Infrastructure, Not AI

Look at the top 10 again. What's not there:

Agents already have an LLM. They don't pay for GPT wrappers. They pay for infrastructure primitives they cannot generate themselves:

Agents pay for access to external state โ€” blockchain data, web content, memory, identity verification, market prices. The things an LLM cannot hallucinate.

This explains why "multi-chain gas price" has 190 users while "AI tweet thread" has 1. A gas price is a ground-truth number an agent needs before acting. A tweet is something the agent can write itself.

How to Get Started: One Command

Your agent doesn't need an API key or a Stripe account to start. Sign a wallet you already hold and get 5 free trial calls (~$2.50) -- no registration:

# 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.

Then call any endpoint. Your credits are deducted automatically. No subscription. No monthly minimum. Pay per call.

Or use the MCP server for native Claude Code integration:

claude mcp add minia2a -- npx -y minia2a-mcp

What's Missing

Honest assessment of what the agent API economy doesn't have yet:

These are the gaps where the first builders win. The infrastructure endpoints have users. The professional service endpoints don't exist yet. That's the opportunity.

4 Days to Auto Mode

On August 14, Claude Code auto mode goes default. Millions of agents will autonomously execute tool calls โ€” including HTTP requests that encounter 402 paywalls. An agent checking a gas price, solving a CAPTCHA, or scraping a page will do it without a human clicking "approve."

The endpoints are ready. The payment rails work. The discovery layer is the bottleneck โ€” and that's what marketplaces like minia2a solve.

Your agent has a wallet. It has credits. Here's what it can buy.