39+ API services from $0.001 per request. Free tier included. No subscriptions, no hidden fees. Three payment options including x402 auto-pay for AI agents.
Start free, scale with any payment method
Get started instantly. No signup, no credit card, no API key required for basic usage.
AI agents pay per request automatically with USDC on Base chain. Zero signup, zero API keys. The native payment rail for AI agents.
Buy credits in bulk with USDC on Base chain. Create an API key, send USDC, credits added instantly on-chain verification.
Pay with Monero for maximum privacy. Send XMR, submit the tx hash, and credits are added after 1 confirmation.
x402 auto-pay prices per request. Credit users pay 1 credit ($0.002) per request regardless of service.
Compare with traditional API providers
| Feature | Clawdia | RapidAPI | AWS |
|---|---|---|---|
| Pricing model | Pay per request | Monthly subscription | Complex tiered |
| Minimum cost | $0 (free tier) | $0 – $9.99/mo | Pay-as-you-go |
| Signup required | No | Yes | Yes + credit card |
| AI agent auto-pay | x402 (USDC) | No | No |
| Crypto payments | USDC + XMR | No | No |
| Services included | 39+ in one key | 1 per subscription | Separate per service |
| Time to first call | <10 seconds | 5–10 minutes | 15–30 minutes |
| MCP compatible | Yes | No | No |
Four ways to make your first API call
# Just send a request — works immediately
curl "https://agent-gateway-kappa.vercel.app/v1/agent-geo/geo/8.8.8.8"
# Create a key (instant, no signup)
curl -X POST "https://agent-gateway-kappa.vercel.app/api/keys/create"
# Use it
curl "https://agent-gateway-kappa.vercel.app/v1/crypto-feeds/prices" \
-H "Authorization: Bearer gw_your_key_here"
import { wrapFetch } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { baseSepolia } from "viem/chains";
const wallet = createWalletClient({
account: privateKeyToAccount(process.env.PRIVATE_KEY),
chain: baseSepolia,
transport: http(),
});
const x402fetch = wrapFetch(fetch, wallet);
// Automatically pays $0.001 USDC per request
const res = await x402fetch(
"https://agent-gateway-kappa.vercel.app/v1/agent-geo/geo/8.8.8.8"
);
const data = await res.json();
console.log(data); // { ip: "8.8.8.8", country: "US", ... }
# 1. Send XMR to the payment address (any amount)
# Address: 4AoTbXjeAUq...Dk6dHWd
# 2. Submit your tx hash to add credits
curl -X POST "https://agent-gateway-kappa.vercel.app/api/credits/topup-xmr" \
-H "Content-Type: application/json" \
-d '{"api_key":"gw_your_key","tx_hash":"your_64char_xmr_txid"}'
# Response: { "credits_added": 86837, "xmr_received": 0.5, "xmr_price_usd": 347.35 }
Yes. Every IP gets 50 free requests/day with no API key needed. Creating an API key (POST /api/keys/create) gives you 200 additional free credits. No signup, no credit card, no email required.
x402 is an open protocol from Coinbase that lets AI agents pay for API calls automatically with USDC on Base chain. Your agent sends a request, gets a 402 response with payment details, signs a USDC authorization, and the payment is settled on-chain. No API keys, no accounts, no signup. Install @x402/fetch from npm to get started.
Create an API key, send USDC to our wallet on Base chain, then call POST /api/credits/topup with your key and transaction hash. Credits are added instantly after on-chain verification. 1 USDC = 500 credits. Even $0.01 works.
Yes. One API key gives you access to all services through the unified gateway at /v1/{service}/{endpoint}. Same key for geolocation, crypto prices, web scraping, screenshots, code execution — everything.
USDC on Base (Layer 2 — low gas fees, ~2 second confirmations) and Monero (XMR) for privacy-focused users. x402 auto-pay uses Base Sepolia testnet during beta. XMR credits are calculated at the live XMR/USD rate.
Free tier: 60 requests/minute, 50 requests/day. API key users: 300 requests/minute. x402 users: 300 requests/minute. Need more? Contact us.
The API gateway handles thousands of requests daily with 44 services running 24/7. All services are health-monitored every 5 minutes. x402 payments use Coinbase's facilitator for on-chain settlement.