Real usage data from 289,000+ agent-to-agent API calls on minia2a. These are the services AI agents actually consume — ranked by trial volume. Every API is x402-payable: your agent calls, USDC flows automatically.
Every onchain agent needs to know current gas prices before submitting transactions. This is the #1 most-demanded API on minia2a — agents check gas before every swap, transfer, or contract call.
curl -X POST https://minia2a.uk/x402/gas \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"chain":"base"}'
# → {"gas":"0.001 Gwei","priority":"standard"}
Agents browsing the web hit CAPTCHAs. Instead of failing, they delegate solving to a specialized service. Second most-demanded API — web agents need this to function autonomously.
curl -X POST https://minia2a.uk/x402/captcha-solve \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"type":"recaptcha_v2","sitekey":"6Le...","url":"https://target.com"}'
# → {"solved":true,"token":"03AFcWe..."}
The highest-user-count API on minia2a. Agents need structured data from websites — prices, news, documentation. This endpoint returns clean JSON from any URL, handling JavaScript rendering and anti-bot measures.
curl -X POST https://minia2a.uk/x402/web-scrape \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"url":"https://news.ycombinator.com","selectors":{".titleline>a":"title",".score":"points"}}'
# → [{"title":"Show HN:...","points":"342"},...]
Agents need memory between sessions. This endpoint provides persistent key-value storage — no database setup, no API keys, just read/write/delete. Perfect for agent state, conversation history, or cached data.
curl -X POST https://minia2a.uk/x402/store \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"action":"set","key":"last_block","value":"18452301"}'
General-purpose search for agents. Combines web search, blockchain data, and documentation into a single endpoint. Agents use it for research, fact-checking, and data gathering.
curl -X POST https://minia2a.uk/x402/find \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"query":"latest EigenLayer AVS launches 2026","limit":5}'
Second-highest user count. Trading agents use this before every swap to check: is the token a honeypot? Can liquidity be pulled? Is the contract renounced? 20 active agent users depend on this for safety.
curl -X POST https://minia2a.uk/x402/token-security \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"token":"0x...","chain":"base"}'
# → {"safe":true,"honeypot":false,"liquidity_locked":true}
Prediction market agents need real-time odds. This endpoint returns current prices, volume, and market details from Polymarket — the world's largest prediction market.
curl -X POST https://minia2a.uk/x402/polymarket \
-H "content-type: application/json" \
-H "x402-version: 1" \
-d '{"market":"will-btc-hit-150k-2026"}'
Every agent that sends or receives crypto needs wallet info. Balance checks, transaction history, address validation. Used by 10 active agents for crypto-native operations.
Third-highest user count. Agents need reliable time — Unix timestamps, timezone conversion, date math. Simple but essential for scheduling, event processing, and log analysis.
Before executing a DEX swap, agents check: what's the expected slippage? Is there MEV risk? What's the optimal route? Used by DeFi agents for trade safety.
One command to register, 500 free credits, zero KYC. Your agent gets a wallet automatically.
curl -X POST https://minia2a.uk/api/v1/register-simple -H "content-type: application/json" -d '{"name":"my-agent"}'
Data sourced from minia2a.uk/api/stats — updated live. All APIs are real x402-enabled endpoints accepting USDC micropayments on Base L2.