You Have 500 Free Credits.
Here's What Your AI Agent Can Do Today.

7 real API calls. Copy-paste code. No API keys — your wallet IS your auth.

🎁 500 FREE CREDITS

= 2,500+ API calls at $0.002/call · = $2.50 value · No credit card · No KYC

Services
Agents
API Calls
Endpoints

⚡ How x402 Works (30 seconds)

  1. Your agent calls an API endpoint with Authorization: Bearer <wallet-address>
  2. Server responds HTTP 402 Payment Required with a price (e.g. $0.005 in USDC)
  3. Your agent pays automatically via x402 — USDC on Base, ~200ms settlement, <$0.01 gas
  4. Server delivers the result. Done.

No API keys. No signup forms. No monthly subscriptions. Your wallet address IS your identity. Pay only for what you use.

🔧 7 Things Your Agent Can Call Right Now

1. Get Live Gas Prices Across 6 Chains

$0.005/call 100 calls = $0.50 ⏱ ~200ms 🟢 Live on Base

Real-time gas prices for Ethereum, Base, Arbitrum, Optimism, Polygon, and Celo. Your trading bot or DeFi agent needs this before submitting any transaction.

curl -s https://minia2a.uk/x402/gas \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS"

2. Audit a Token for Rug Pull Risks

$0.01/call 50 calls = $0.50 ⏱ ~500ms 🟢 Live on Base

Honeypot check, owner control analysis, LP lock status, holder concentration, and rug pull risk score. Every DeFi agent should run this before touching a new token.

curl -s https://minia2a.uk/x402/token-security \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS" \
  -d '{"token":"0x1234...","chain":"base"}'

3. Scrape JavaScript-Rendered Web Pages

$0.002/call 250 calls = $0.50 ⏱ ~2s 🟢 Headless Chromium

Full JS-rendered HTML via headless Chromium. Bypass SPAs, React apps, and JS-walled content. Your research agent can read any page on the internet.

curl -s https://minia2a.uk/x402/browser-render \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS" \
  -d '{"url":"https://example.com"}'

4. Solve CAPTCHAs Automatically

$0.005/solve 100 solves = $0.50 ⏱ ~3-10s 🟢 reCAPTCHA + hCaptcha

Solve reCAPTCHA v2/v3, hCaptcha, and Cloudflare Turnstile. Returns a valid token. Essential for any web automation agent that hits bot detection.

curl -s https://minia2a.uk/x402/captcha-solve \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS" \
  -d '{"sitekey":"SITEKEY","pageurl":"https://example.com"}'

5. Check a Wallet's On-Chain Profile

$0.01/call 50 calls = $0.50 ⏱ ~300ms 🟢 Multi-chain

Multi-chain balances, contract detection, risk flags, activity summary. Your agent can analyze any wallet before interacting with it.

curl -s https://minia2a.uk/x402/wallet-intel \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS" \
  -d '{"address":"0x...","chains":["base","ethereum"]}'

6. Get Real-Time Prediction Market Data

$0.005/call 100 calls = $0.50 ⏱ ~300ms 🟢 Polymarket

Live Polymarket odds, volume, and liquidity. Browse active prediction markets. Your analysis agent gets real-time crowd-predicted probabilities.

curl -s https://minia2a.uk/x402/polymarket \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS"

7. AI-Powered Web Research

$0.05/call 10 calls = $0.50 ⏱ ~5-15s 🟢 Claude-powered

Multi-step web browsing agent. Give it a URL and a question — it browses, extracts, and returns a structured AI answer. Your research agent's secret weapon.

curl -s https://minia2a.uk/x402/web-retrieve \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_WALLET_ADDRESS" \
  -d '{"url":"https://en.wikipedia.org/wiki/Ethereum","question":"What is the current market cap?"}'

💰 The Math: How Far 500 Credits Goes

2,500
Browser Renders
at $0.002/call
500
Gas Price Checks
at $0.005/call
250
Token Audits
at $0.01/call
50
AI Research Calls
at $0.05/call

🐍 Python Agent? Here's the Full Script

Complete Python Agent With x402 Payments

This agent checks gas prices, audits a token, and scrapes a web page — all paying automatically with your credits. Save as my-agent.py and run.

import requests, os

WALLET = os.getenv("MINIA2A_WALLET")  # your wallet address
BASE = "https://minia2a.uk/x402"
HEADERS = {"Authorization": f"Bearer {WALLET}", "Content-Type": "application/json"}

def call(endpoint, data=None):
    """Call any x402 endpoint — auto-handles HTTP 402 payment."""
    url = f"{BASE}/{endpoint}"
    r = requests.post(url, json=data or {}, headers=HEADERS) if data \
        else requests.get(url, headers=HEADERS)
    if r.status_code == 402:
        # Payment required — in production, your wallet signs + pays here
        print(f"[402] Payment required: {r.json().get('price', 'unknown')}")
        return None
    return r.json()

# 1. Check gas prices (0.5¢)
gas = call("gas")
print(f"⛽ Base gas: {gas.get('base',{}).get('gwei','?')} gwei" if gas else "gas failed")

# 2. Audit a token (1¢)
audit = call("token-security", {"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "chain": "ethereum"})
print(f"🔍 USDC risk: {audit.get('risk','?')}" if audit else "audit failed")

# 3. Scrape a page (0.2¢)
page = call("browser-render", {"url": "https://news.ycombinator.com"})
print(f"📄 Page title: {page.get('title','?')}" if page else "scrape failed")

print(f"\n✅ Done. Credits remaining: check https://minia2a.uk/credits?wallet={WALLET}")

Don't Have Credits Yet?

Register your agent wallet in 30 seconds. Get 500 free credits instantly. No KYC. No credit card. No API keys.

Get 500 Free Credits →

Already have credits? Check your balance →

🔍 174+ More Services Available

📧 Email Verification

$0.01/call
Temp inbox + verification poll

🔄 DEX Price Oracle

$0.01/call
Multi-chain token prices

🧠 AI Summarization

$0.02/call
Claude-powered text summary

🌐 DNS Lookup

$0.002/call
A, AAAA, MX, TXT records

📸 Page Screenshot

$0.01/call
Full-page PNG via Chromium

🔗 ENS Resolution

$0.002/call
.eth → address, forward & reverse

📊 Market Sentiment

$0.005/call
Social + on-chain aggregation

💱 Swap Safety Check

$0.01/call
Slippage + sandwich risk

Browse all 174 services →