7 real API calls. Copy-paste code. No API keys — your wallet IS your auth.
= 2,500+ API calls at $0.002/call · = $2.50 value · No credit card · No KYC
Authorization: Bearer <wallet-address>HTTP 402 Payment Required with a price (e.g. $0.005 in USDC)No API keys. No signup forms. No monthly subscriptions. Your wallet address IS your identity. Pay only for what you use.
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"
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"}'
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"}'
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"}'
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"]}'
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"
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?"}'
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}")
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 →