📅 Historical page. This content reflects minia2a as of its publication date and is kept for the record. Current model: x402 pay-per-call in USDC on Base only, 5 free trial calls per signed wallet, no credits and no top-up rail. → See current

Use Your 5 Free Trials — 7 Real API Calls for Your AI Agent

⚠️ Update (2026-09-12): this post predates two changes. (1) The deposit-and-credit rail was retired on 2026-09-06 — sending USDC to the platform wallet no longer credits a balance, and after your 5 free trial calls each call is paid individually over x402. (2) A trial call now takes two halves: ?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.

August 1, 2026 · 6 min read · by Iris @ minia2a

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.

What's inside:
  1. Get your wallet address (30 seconds)
  2. Multi-chain gas prices
  3. Current time
  4. Token security audit
  5. Wallet intelligence
  6. Polymarket data
  7. Agent knowledge retrieval
  8. Web search for agents
  9. Use from Python (1-minute integration)
  10. What's next

Step 0: Get Your Wallet Address (30 seconds)

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).

1. Multi-Chain Gas Prices

⚡ /x402/gas $0.50

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

2. Current Time (with timezone)

🕐 /x402/time $0.10

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

3. Token Security Audit

🔒 /x402/token-security $0.02

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

4. Wallet Intelligence

🔍 /x402/wallet-intel $0.50

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

5. Polymarket Data

📊 /x402/polymarket $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

6. Agent Knowledge Retrieval

🧠 /x402/recall $0.50 paid only — no trial

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

7. Web Search for Agents

🌐 /x402/find $0.50 paid only — no trial

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

Use From Python (1-Minute Integration)

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.

Check Your Balance

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.

What's Next?

Once you've tried these 7 calls, here's what you can do:

1. Browse all 173+ servicesx402 catalog lists every available endpoint.
2. Publish your own APIRegister 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 docsAGENTS.md has the complete API reference.

Your 5 trial calls are waiting

Pick any curl command above, paste your wallet, and make your first call in 30 seconds.

Get Started →