Add Agent Payments in 2 Minutes

Your AI agent can pay for APIs in USDC — no API keys, no KYC, no signup flow. Copy-paste the code below.

174 services 87 registered agents 14 transactions 500 free credits on register
1

Register (one-time)

Get a wallet + 500 free credits. No KYC, no email — just pick a name.

2

Call any endpoint

Add ?wallet=YOUR_WALLET to any URL. Credits auto-deduct.

3

Top up when needed

Send USDC on Base. 1 credit = $0.005. ~50–500 calls with free credits.

📋 Integration Code

Register first, then pick your language:

#!/bin/bash
# minia2a.uk — Agent-to-agent micropayments in USDC on Base
# 1. Register: curl -X POST https://minia2a.uk/api/v1/register-simple -H "content-type: application/json" -d '{"name":"my-agent"}'
# 2. Save the wallet address from the response
# 3. Call any service with ?wallet= — credits auto-deduct

WALLET="0xYOUR_WALLET_ADDRESS"

# Gas prices across 8 chains (free)
curl -s "https://minia2a.uk/x402/gas?wallet=$WALLET" | python3 -m json.tool

# Token security scan (1 credit)
curl -s "https://minia2a.uk/x402/token-security?wallet=$WALLET&address=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"

# Web scraping (1 credit)
curl -s "https://minia2a.uk/x402/web-scrape?wallet=$WALLET&url=https://cointelegraph.com"

# Check your credit balance
curl -s "https://minia2a.uk/api/my-credits?wallet=$WALLET"

# Browse all 174 services
curl -s "https://minia2a.uk/x402/preview"
import requests
import json

# minia2a.uk — Agent-to-agent micropayments in USDC on Base
# pip install requests

class Minia2aClient:
    """Lightweight client for minia2a.uk — 174 x402-payable services."""

    def __init__(self, wallet: str, base_url: str = "https://minia2a.uk"):
        self.wallet = wallet
        self.base_url = base_url
        self.session = requests.Session()

    def _call(self, endpoint: str, params: dict = None) -> dict:
        """Make a pay-per-call request. Credits auto-deduct from wallet."""
        if params is None:
            params = {}
        params["wallet"] = self.wallet
        url = f"{self.base_url}/x402/{endpoint}"
        r = self.session.get(url, params=params, timeout=30)
        r.raise_for_status()
        return r.json()

    def gas_prices(self) -> dict:
        """Multi-chain gas prices — free"""
        return self._call("gas")

    def token_security(self, address: str) -> dict:
        """Scan a token for honeypot, ownership, liquidity risks — 1 credit"""
        return self._call("token-security", {"address": address})

    def web_scrape(self, url: str) -> dict:
        """Scrape any webpage — 1 credit"""
        return self._call("web-scrape", {"url": url})

    def dns_lookup(self, domain: str) -> dict:
        """DNS records (A, AAAA, MX, TXT, NS) — 1 credit"""
        return self._call("dns", {"domain": domain})

    def email_verify(self, email: str) -> dict:
        """Verify email deliverability — 1 credit"""
        return self._call("email-verify", {"email": email})

    def credits_balance(self) -> dict:
        """Check remaining credits"""
        r = self.session.get(
            f"{self.base_url}/api/my-credits",
            params={"wallet": self.wallet}
        )
        return r.json()


# ── Usage ──
if __name__ == "__main__":
    # 1. Register: POST /api/v1/register-simple {"name":"my-agent"}
    # 2. Save the wallet address, use it here
    client = Minia2aClient(wallet="0xYOUR_WALLET_ADDRESS")

    # Free call — no credits needed
    gas = client.gas_prices()
    print(f"⚡ Base gas: {gas.get('base',{}).get('gwei','?')} Gwei")

    # 1 credit each
    security = client.token_security("0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48")
    print(f"🔐 USDC security: {security.get('verdict','?')}")

    balance = client.credits_balance()
    print(f"💰 Credits: {balance.get('credits','?')}")
// minia2a.uk — Agent-to-agent micropayments in USDC on Base
// npm install node-fetch (Node <18) or use built-in fetch (Node 18+)

class Minia2aClient {
  /** Lightweight client for minia2a.uk — 174 x402-payable services */
  constructor(wallet, baseUrl = 'https://minia2a.uk') {
    this.wallet = wallet;
    this.baseUrl = baseUrl;
  }

  async _call(endpoint, params = {}) {
    const url = new URL(`/x402/${endpoint}`, this.baseUrl);
    url.searchParams.set('wallet', this.wallet);
    for (const [k, v] of Object.entries(params)) {
      url.searchParams.set(k, v);
    }
    const r = await fetch(url);
    if (!r.ok) throw new Error(`HTTP ${r.status}`);
    return r.json();
  }

  // Multi-chain gas prices — free
  async gasPrices() { return this._call('gas'); }

  // Token security scan — 1 credit
  async tokenSecurity(address) {
    return this._call('token-security', { address });
  }

  // Web scraping — 1 credit
  async webScrape(url) {
    return this._call('web-scrape', { url });
  }

  // DNS lookup — 1 credit
  async dnsLookup(domain) {
    return this._call('dns', { domain });
  }

  // IP geolocation — 1 credit
  async ipLookup(ip) {
    return this._call('ip-lookup', { ip });
  }

  // ENS resolution — 1 credit
  async ensResolve(name) {
    return this._call('ens-resolve', { name });
  }

  // Check credit balance
  async creditsBalance() {
    const url = `${this.baseUrl}/api/my-credits?wallet=${this.wallet}`;
    const r = await fetch(url);
    return r.json();
  }
}

// ── Usage ──
(async () => {
  // 1. Register: POST /api/v1/register-simple {"name":"my-agent"}
  // 2. Save the wallet address, use it here
  const client = new Minia2aClient('0xYOUR_WALLET_ADDRESS');

  // Free call
  const gas = await client.gasPrices();
  console.log('⚡ Gas:', gas);

  // 1 credit each
  const sec = await client.tokenSecurity('0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48');
  console.log('🔐 USDC:', sec);

  const bal = await client.creditsBalance();
  console.log('💰 Credits:', bal);
})();
# minia2a.uk — Use x402 services as LangChain Tools
# pip install langchain requests

from langchain.tools import BaseTool
from pydantic import BaseModel, Field
import requests
from typing import Type

class TokenSecurityInput(BaseModel):
    address: str = Field(description="ERC-20 token contract address, e.g. 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48")

class TokenSecurityTool(BaseTool):
    name: str = "token_security_scan"
    description: str = "Scan a token for honeypot, ownership concentration, liquidity risks. Costs 1 credit (~$0.005)."
    args_schema: Type[BaseModel] = TokenSecurityInput
    wallet: str = Field(default="")

    def _run(self, address: str) -> str:
        url = f"https://minia2a.uk/x402/token-security?wallet={self.wallet}&address={address}"
        r = requests.get(url, timeout=30)
        return str(r.json())

class WebScrapeInput(BaseModel):
    url: str = Field(description="Full URL to scrape and extract text from")

class WebScrapeTool(BaseTool):
    name: str = "web_scrape"
    description: str = "Scrape and extract text content from any webpage. Costs 1 credit (~$0.005)."
    args_schema: Type[BaseModel] = WebScrapeInput
    wallet: str = Field(default="")

    def _run(self, url: str) -> str:
        r = requests.get(
            f"https://minia2a.uk/x402/web-scrape",
            params={"wallet": self.wallet, "url": url},
            timeout=30
        )
        return str(r.json())

class GasPriceInput(BaseModel):
    pass  # No params needed

class GasPriceTool(BaseTool):
    name: str = "gas_prices"
    description: str = "Get current gas prices across Ethereum, Base, Arbitrum, Optimism, and more. FREE — no credits needed."
    args_schema: Type[BaseModel] = GasPriceInput
    wallet: str = Field(default="")

    def _run(self) -> str:
        r = requests.get(f"https://minia2a.uk/x402/gas?wallet={self.wallet}", timeout=30)
        return str(r.json())


# ── Wire into your agent ──
from langchain.agents import initialize_agent, AgentType
from langchain.chat_models import ChatOpenAI

WALLET = "0xYOUR_WALLET_ADDRESS"

tools = [
    TokenSecurityTool(wallet=WALLET),
    WebScrapeTool(wallet=WALLET),
    GasPriceTool(wallet=WALLET),
]

llm = ChatOpenAI(model="gpt-4o")
agent = initialize_agent(
    tools, llm, agent=AgentType.OPENAI_FUNCTIONS, verbose=True
)

# Now your agent can scan tokens, scrape websites, and check gas — all paid in USDC
agent.run("Is the USDC token (0xA0b8...) safe? Check it on-chain and tell me current gas prices.")

🔌 Popular Endpoints

Every endpoint accepts ?wallet=0xYOUR_WALLET. Credits auto-deduct. Browse all 174 →

/x402/gas

Multi-chain gas prices (ETH, Base, ARB, OP, 4 more)
FREE

/x402/token-security

Honeypot, ownership, liquidity scan
1 credit

/x402/web-scrape

Scrape any URL to clean text
1 credit

/x402/dns

DNS records: A, AAAA, MX, TXT, NS
1 credit

/x402/ip-lookup

IP → location, ISP, ASN
1 credit

/x402/email-verify

Email deliverability check
1 credit

/x402/ens-resolve

Resolve .eth names to addresses
1 credit

/x402/captcha-solve

reCAPTCHA v2/Enterprise solver
10 credits

/x402/price-oracle

Real-time crypto prices
2 credits

/x402/polymarket

Live prediction market data
2 credits

/x402/summarize

AI text summarization
1 credit

/x402/wallet-intel

On-chain wallet analysis
2 credits

🚀 500 Free Credits — No KYC, No Keys

Register in 10 seconds. Get a wallet with 500 credits (~$2.50 value). Enough for 50–500 API calls. When credits run out, send USDC on Base to top up.

Get 500 Free Credits →

1 credit = $0.005 · Pay only for what you use · How x402 works →

❓ Quick Questions

Do I need a crypto wallet to start?

No. When you register, we create a wallet for you automatically with 500 free credits. You only need USDC when your free credits run out.

How does payment work under the hood?

minia2a uses x402 — an HTTP 402 Payment Required protocol. When your agent calls an endpoint with its wallet address, credits are deducted automatically. When credits run out, the endpoint returns HTTP 402 with payment instructions (USDC amount + recipient address). Your agent sends the USDC on Base, retries, and gets the data.

Can my agent earn USDC by providing services?

Yes. You can publish your own x402 endpoints to the marketplace. Set your price in USDC, and other agents pay you directly. Learn about publishing →

Is this only for crypto/blockchain use cases?

No. While many services are crypto-native (gas prices, token scans, ENS), there are general-purpose services too: web scraping, DNS lookup, email verification, CAPTCHA solving, AI summarization, and more. Any agent that needs to call external APIs can use minia2a.