โ† minia2a.uk The Stripe for AI Agents

๐Ÿฆพ 5 APIs Your AI Agent Should Call Today

Build a DeFi agent that checks gas, scans tokens, scrapes data, solves CAPTCHAs, and discovers services โ€” all pay-per-call in USDC. Zero API keys.

173
Services Available
500
Free Credits ($2.50)
305K+
Requests Served
$0.005
Avg Cost Per Call
๐ŸŽ No wallet yet? Register in 60 seconds โ†’ get 500 free credits ($2.50). We create a Base wallet for you automatically. All 5 APIs below work with your free credits.
Get 500 Free Credits โ†’
๐Ÿ’ก How this works: Every API below uses x402 โ€” an HTTP 402 Payment Required protocol. Your agent makes a request, minia2a deducts credits (or USDC) from your wallet, and returns the result. No API keys. No monthly bills. No KYC. Just curl with your wallet address.
1
Gas Price Oracle
/x402/gas
~$0.005/call 321 calls DeFi

Real-time gas prices across Ethereum, Base, Arbitrum, Optimism, and 10+ chains. Your agent needs this before submitting any transaction โ€” never overpay gas again.

๐Ÿ”ง Use case: Your trading bot checks gas before submitting a swap. If gas > 50 gwei on Ethereum, it routes through Base instead. Saves 80% on fees automatically.
curl -s "https://minia2a.uk/x402/gas?wallet=0xYOUR_WALLET" | jq .
{ "ethereum": {"gwei": 18.5, "slow": 15, "fast": 25, "usd": 1.83}, "base": {"gwei": 0.018, "usd": 0.001}, "arbitrum": {"gwei": 0.1, "usd": 0.01}, "optimism": {"gwei": 0.015, "usd": 0.001} }
2
Token Security Scanner
/x402/token-security
~$0.005/call 76 calls ยท 19 users Security

Scan any ERC-20 token for honeypots, rug pulls, mint functions, ownership renounce, liquidity locks, and 15+ security checks. Protect your agent from scams.

๐Ÿ”ง Use case: Your agent monitors new token launches on DEXs. Every time a new pool appears, it runs a security scan. If the token passes all checks AND has locked liquidity, the agent buys. If not, it skips โ€” and logs the scam for your blocklist.
curl -s "https://minia2a.uk/x402/token-security?wallet=0xYOUR_WALLET&token=0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" | jq .
{ "token": "0xa0b8...eb48", "name": "USD Coin", "honeypot": false, "rugPullRisk": "low", "liquidityLocked": true, "ownershipRenounced": false, "mintable": true, "score": 8.2 }
3
Web Scraper
/x402/web-scrape
~$0.01/call 185 calls ยท 25 users Data

Scrape any webpage into clean structured JSON โ€” title, text, links, metadata. Your agent needs real-time web data without building a scraping infrastructure.

๐Ÿ”ง Use case: Your agent tracks DeFi governance proposals. Every morning it scrapes the governance forums of Compound, Aave, and Uniswap, extracts new proposals, and summarizes them. Zero infrastructure โ€” just one API call per forum.
curl -s "https://minia2a.uk/x402/web-scrape?wallet=0xYOUR_WALLET&url=https://compound.finance/governance" | jq .
{ "title": "Compound Governance", "text": "Proposal 234: Adjust cUSDC collateral factor...", "links": ["/proposals/234", "/proposals/233", ...], "status": 200 }
4
CAPTCHA Solver
/x402/captcha-solve
~$0.005/call 305 calls Automation

Solve image and text CAPTCHAs programmatically. Your agent hits a CAPTCHA wall on a website โ€” this API solves it so the agent can keep working.

๐Ÿ”ง Use case: Your agent scrapes token data from CoinGecko daily, but occasionally hits their Cloudflare CAPTCHA. Instead of failing, it sends the CAPTCHA to this endpoint, gets the solution, and continues. Zero human intervention.
curl -s -X POST "https://minia2a.uk/x402/captcha-solve?wallet=0xYOUR_WALLET" \
  -H "Content-Type: application/json" \
  -d '{"image":"BASE64_IMAGE_DATA","type":"text"}' | jq .
{"solved": true, "answer": "X72M9K", "confidence": 0.94}
5
Service Discovery
/x402/find
Free tier available 120 calls Discovery

Search across all 173 x402-payable services. Your agent needs to discover new capabilities dynamically โ€” this is the yellow pages of the agent economy.

๐Ÿ”ง Use case: Your agent is asked to "find me all DeFi lending protocols on Base." Instead of hardcoding a list, it calls /x402/find, discovers 12 relevant services, and uses the best one. Your agent's capabilities grow without you writing more code.
curl -s "https://minia2a.uk/x402/find?wallet=0xYOUR_WALLET&query=lending+protocols+base" | jq .
{ "results": [ {"name": "Lending Rates Oracle", "endpoint": "/x402/lending-rates", "cost": "0.005 USDC"}, {"name": "Aave V3 Data", "endpoint": "/x402/aave-data", "cost": "0.01 USDC"}, ... ] }

๐Ÿ”— Wire All 5 Into One Agent (Python)

Here's a complete Python agent that uses all 5 APIs in a single workflow โ€” check gas, scan a token, scrape its website, solve any CAPTCHA, and discover related services:

import requests, json

WALLET = "0xYOUR_WALLET"  # from registration
BASE = "https://minia2a.uk"

def call(endpoint, params=None):
    """Call any x402 endpoint with your wallet."""
    url = f"{BASE}{endpoint}"
    r = requests.get(url, params={"wallet": WALLET, **(params or {})})
    return r.json()

# 1. Check gas โ€” choose cheapest chain
gas = call("/x402/gas")
best_chain = min(gas.items(), key=lambda x: x[1].get("usd", 999))
print(f"โšก Cheapest chain: {best_chain[0]} @ ${best_chain[1]['usd']}")

# 2. Scan a token before interacting
token = "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"  # USDC
security = call("/x402/token-security", {"token": token})
if security.get("honeypot"):
    print(f"โš ๏ธ  HONEYPOT DETECTED โ€” aborting")
    exit(1)
print(f"โœ… {security['name']}: score {security['score']}/10")

# 3. Scrape governance for new proposals
gov = call("/x402/web-scrape", {"url": "https://compound.finance/governance"})
proposals = [l for l in gov.get("links", []) if "proposal" in l]
print(f"๐Ÿ“‹ Found {len(proposals)} governance proposals")

# 4. Discover related services
related = call("/x402/find", {"query": "lending defi"})
print(f"๐Ÿ” Found {len(related.get('results', []))} related services")

# 5. Your agent now has: cheapest gas, safe token, governance intel,
#    and a list of services to expand its capabilities.
#    Total cost: ~$0.03. All paid from your free credits.
โšก This agent costs ~$0.03 per run. Your 500 free credits ($2.50) cover ~80 runs. After that, top up with USDC on Base โ€” still no API keys, no monthly minimum, no KYC.

๐Ÿš€ What To Build Next

๐Ÿค– Trading Bot

Gas oracle โ†’ Token security โ†’ DEX price โ†’ Execute. Full autonomous loop for under $0.05/run.

Build it โ†’

๐Ÿ•ต๏ธ Scam Detector

Monitor new tokens โ†’ Security scan โ†’ Web scrape project site โ†’ Score. Alert on Telegram.

Build it โ†’

๐Ÿ“Š Governance Tracker

Scrape forums โ†’ Summarize proposals โ†’ Post to Discord. Never miss a vote again.

Build it โ†’

๐Ÿ”€ Cross-Chain Router

Check gas on all chains โ†’ Find best bridge โ†’ Execute. Save 30-80% on every cross-chain move.

Build it โ†’
๐Ÿ† $100K+ Hackathon โ€” Build APIs AI Agents Pay For
August 23, Bengaluru + Remote. Fork a starter kit (Python, Node.js, or Go), build an x402 endpoint agents will pay for, list on minia2a. Prizes, visibility, and real USDC revenue. Join the Hackathon โ†’ ๐Ÿ“ฆ Starter Kit โ†’
๐ŸŽฏ Ready to start? Register below, get 500 free credits, and run the Python agent above. First call in under 2 minutes.
Register & Get 500 Credits โ†’ No KYC. No credit card. No API key. Just a wallet.

Browse all 173 services โ†’ ยท Full cookbook โ†’ ยท Live stats โ†’