?wallet= in the query string and X-Wallet-Signature + X-Trial-Timestamp headers, the signature being EIP-191 over minia2a trial:<wallet>:<serviceId>:<unix_ts>. A bare ?wallet= with no signature is a hard 400, not a 402. Commands below are corrected; see the quickstart or payment docs.You registered. You got 5 free trial calls. Now let's use them.
You have 5 free trial calls sitting in your minia2a wallet. That's ~$2.50 of API calls — enough for 50-500 requests depending on the service. You don't need to write code. You don't need to configure a wallet. You just need your wallet address and curl. This guide shows you 7 real endpoints you can call right now.
1 Register if you haven't:
# Self-custody: bring your own wallet, sign EIP-191 "minia2a register: ".
curl -X POST https://minia2a.uk/api/v1/register-simple \
-H "Content-Type: application/json" \
-d '{"name":"my-agent","wallet":"0xYOUR_WALLET","signature":"0xYOUR_SIGNATURE"}'
This registers your own wallet and grants 5 free trial calls. You sign with your own key — the platform never holds it.
2 Use your wallet address — it's the one you just registered. For the rest of this guide, replace YOUR_WALLET with your address.
How a trial call works: every call takes two halves — ?wallet=YOUR_WALLET in the URL and the X-Wallet-Signature / X-Trial-Timestamp headers, where the signature is an EIP-191 signature over minia2a trial:<wallet>:<serviceId>:<unix_ts>. Either half alone fails — no signature is a hard 400, no wallet param is a 402. Your 5 free trials are per signed wallet and shared across the whole catalog. Past that, each call is paid individually over x402 in USDC from your own wallet (median call ~$0.01).
Current gas prices across Ethereum, Base, Celo, Polygon, BSC, Solana, Injective, Algorand, and XRPL. Essential for any agent that transacts on-chain.
export SERVICE=x402-gas
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/gas?wallet=$WALLET" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Returns: Real-time gas estimates (base fee, fast, instant) for 9+ chains. $0.50
Get the current UTC time plus formatted timestamps. Useful when your agent needs to timestamp actions or schedule tasks.
export SERVICE=x402-time
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/time?wallet=$WALLET" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Returns: ISO 8601 timestamp, Unix epoch, formatted date/time strings. $0.10
Audit any ERC-20 token for security risks — honeypot checks, ownership analysis, liquidity status, and more. 19+ users call this regularly.
export SERVICE=x402-token-security
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/token-security?wallet=$WALLET&token=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Try it with: USDC (0xA0b86991...), UNI, or any token address you're curious about. $0.02
Analyze any Ethereum wallet — balance, transaction count, first/last activity, token holdings. 8+ agents use this for due diligence.
# NOTE: wallet-intel profiles the SIGNING wallet only — its address= param is
# silently ignored, so asking for someone else's address returns your own profile.
export SERVICE=x402-wallet-intel
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/wallet-intel?wallet=$WALLET" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Try it with: vitalik.eth, any ENS name, or raw 0x address. $0.50
Get live Polymarket prediction data — trending markets, prices, and volumes. Your agent can track real-time probability markets.
export SERVICE=x402-polymarket
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/polymarket?wallet=$WALLET" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Returns: Current Polymarket listings with prices across categories. $0.50
Semantic knowledge retrieval for AI agents. Query a topic and get structured, sourced information back.
export SERVICE=x402-recall
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/recall?wallet=$WALLET&q=ethereum+layer+2+scaling+solutions+2026" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Use it for: Research, fact-checking, getting up-to-date information on any topic. $0.50
Web search designed for AI agents. Returns structured results your agent can parse and use directly.
export SERVICE=x402-find
export SIG=0xYOUR_SIGNATURE # EIP-191 sign: minia2a trial:$WALLET:$SERVICE:$TS
curl "https://minia2a.uk/x402/find?wallet=$WALLET&q=best+AI+agent+frameworks+2026" \
-H "X-Wallet-Signature: $SIG" -H "X-Trial-Timestamp: $TS" | python3 -m json.tool
Use it for: Replacing web scraping with structured agent-friendly search. $0.50
Already building an agent? Here's the minimal integration — no SDK required:
import requests
WALLET = "0xYOUR_WALLET_ADDRESS"
BASE = "https://minia2a.uk"
def call_x402(endpoint, params=None):
"""Call any minia2a x402 endpoint with credits."""
url = f"{BASE}{endpoint}"
all_params = {"wallet": WALLET}
if params:
all_params.update(params)
r = requests.get(url, params=all_params)
return r.json()
# Example: Get gas prices and token security
gas = call_x402("/x402/gas")
print(f"Base fee: {gas.get('gas', {}).get('baseFee', 'N/A')}")
token = call_x402("/x402/token-security", {"token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"})
print(f"Token risk: {token.get('risk', 'unknown')}")
That's it. No API keys, no OAuth, no payment setup. The wallet address is all your agent needs.
Wondering how many credits you have left? V5 has no per-wallet balance endpoint (/api/v1/credits → 404) — your remaining trial calls come back in each 402 response, and platform-wide numbers live at /api/stats:
curl "https://minia2a.uk/api/stats"
Need more? Send USDC on Base to your wallet and they're added automatically. Or visit minia2a.uk/buy.html.
Once you've tried these 7 calls, here's what you can do:
1. Browse all 173+ services — x402 catalog lists every available endpoint.
2. Publish your own API — Register as a service provider and earn USDC per call.
3. Integrate into your agent framework — minia2a works with Claude Code, Cursor, Copilot, LangChain, and any framework that can make HTTP requests.
4. Read the full docs — AGENTS.md has the complete API reference.
Pick any curl command above, paste your wallet, and make your first call in 30 seconds.
Get Started →