Pay any API in USDC over x402. Every major AI + data API, no signup, no API keys — gasless USDC on Sui.
Agent Payments is x402 on Sui — the gateway at mpp.t2000.ai serves paid HTTP APIs that AI agents can pay for autonomously with USDC on Sui. No signup, no API keys, no accounts. Pay $0.02 – $0.10 per LLM call. Pay $2.00 – $3.00 per physical postcard.Two surfaces use it:
t2 pay <url> in the CLI — the human + agent surface for one-off paid requests.
t2000_pay MCP tool — the AI-client surface, same flow, exposed via MCP.
Both auto-handle the HTTP 402 challenge → quote → USDC payment (gasless) → retry loop.
Or hit the catalog directly: /api/services, /llms.txt, and live counters at /api/mpp/stats. When you’re ready for a paid call, create + fund a wallet (below) — $5 ≈ ~250 calls at the $0.02 floor.
# 1. Install + create a wallet (if you haven't)npm install -g @t2000/clit2 init# 2. Fund the wallet with USDC (any amount; $1 covers ~50 LLM calls)t2 fund# (transfer USDC to the printed address from any Sui wallet)# 3. Make your first paid requestt2 pay https://mpp.t2000.ai/openai/v1/chat/completions \ --data '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello, world!"}]}'
That’s it. The x402 challenge is handled automatically; payment broadcasts to Sui mainnet; the response comes back.
t2 pay https://mpp.t2000.ai/openai/v1/images/generations \ --data '{ "prompt": "a serene mountain lake at dawn, photorealistic", "size": "1024x1024" }'
Returns { data: [{ url: "https://...vercel-storage.com/..." }] }. The gateway uploads each gpt-image-1 result to Vercel Blob and rewrites the response to DALL-E shape — you get a permanent CDN URL.
Ask GPT-4o — $0.02
t2 pay https://mpp.t2000.ai/openai/v1/chat/completions \ --data '{ "model": "gpt-4o", "messages": [{"role":"user","content":"Summarize Sui consensus in 3 sentences."}], "max_tokens": 200 }'
Standard OpenAI Chat Completions response shape. Pass vision via image_url content blocks. For cheaper alternatives (Together AI, Mistral, DeepSeek, Groq) call t2 services search "chat".
Whisper transcription. Up to 25 MB / 30 min. Pass response_format: "verbose_json" for timestamps. For speaker diarization, browse other transcription providers via t2 services search "transcription".
Every chat provider on the gateway speaks the OpenAI Chat Completions shape — same request body, same response JSON. One request format, many providers, all $0.02/call, no signup and no API keys:
Provider
Endpoint
OpenAI
/openai/v1/chat/completions
Groq
/groq/v1/chat/completions
DeepSeek
/deepseek/v1/chat/completions
Together
/together/v1/chat/completions
Mistral
/mistral/v1/chat/completions
Pass any model the provider serves — the request body is forwarded as-is. OpenAI’s other endpoints are mirrored too — embeddings, images/generations, audio/speech, audio/transcriptions — and more chat providers (Perplexity, Cohere, Gemini) are one t2 services search "chat" away.Why it matters for agents. Agents burn 5–30× the tokens a human chat does, so inference is the dominant cost. The cheap open tiers (DeepSeek, Groq, Together, Mistral) are a flat $0.02/call, account-less — switch providers by swapping the path, keep the exact same request body. Pay per call in USDC; no minimums, no subscription, no key to rotate.
Private inference, no key. t2000’s own Private Inference is a first-party x402 service too — t2 pay https://x402.t2000.ai/t2000/v1/chat/completions runs open + confidential (GPU-TEE) models with no key, no account. Same pay-per-call flow; private by default.
The gateway answers a paid call with HTTP 402 first, then expects a signed X-PAYMENT retry — a handshake the stock OpenAI SDK can’t perform (it has no hook to sign a Sui transaction on a 402). Route the call through a t2000 paying client and you get back the verbatim OpenAI response body, so any OpenAI parser works unchanged:
# CLI — the same body works on any provider; just change the patht2 pay https://mpp.t2000.ai/deepseek/v1/chat/completions \ --data '{"model":"deepseek-chat","messages":[{"role":"user","content":"hi"}]}'
The catalog spans AI, media, search, data, web, translation, and more — the live truth (and the current count) is always /api/services:
Category
Services
AI
OpenAI, Anthropic, Google Gemini, DeepSeek, Mistral, Groq, Together AI, Cohere, Perplexity, fal.ai, Replicate, ElevenLabs, Exa, t2000 Private Inference, and more
Media (image · audio · TTS)
OpenAI (gpt-image-1, Whisper, TTS), fal.ai, Stability AI, Replicate, ElevenLabs, AssemblyAI, Together AI
Each service sets its own per-endpoint price. The gateway applies a thin overlay (covered by service margins). Pay per call — no subscription, no commit:
LLM calls: $0.02 – $0.10
Image generation: $0.02 – $0.40
Audio transcription: $0.02 – $0.10
Physical postcard / letter: $2.00 – $3.00
Code execution / scraping / search: $0.02 – $0.20
Always pass --max-price <USD> (default $1.00) so a misconfigured endpoint can’t drain the wallet.The live per-endpoint price is always in the catalog and the OpenAPI spec (x-payment-info.price) — those are generated from the gateway’s price source of truth, so they never drift from what you’re charged.
Endpoints that produce binary output — audio (TTS), raw image bytes, PDFs — do not stream the bytes back. The gateway hosts the artifact and returns small JSON instead:
Fetch url to get the file. This keeps responses safe to pass through any JSON or text transport (SDK, MCP, agent context) without corruption, and keeps the bytes out of the LLM’s context window. JSON and text endpoints are returned inline as usual.
Lead a fresh session with “use t2 services.” In a brand-new chat, if you name an external API directly (“generate an image via fal.ai”), some AI clients default to their own sandbox and reply that they can’t reach it — they never consider the wallet. Starting your request with “use t2 services” (e.g. “Use t2 services to generate a hero image via fal.ai.”) tells the client to load the t2000_* tools and pay via x402 from the first message. Every recipe prompt in these docs already starts this way. Once any t2000_* tool has run, the rest of the session routes correctly without the prefix.
Gateway — Next.js 16 on Vercel at mpp.t2000.ai. Proxies upstream APIs behind x402 (HTTP 402) payment challenges.
Protocol — x402 (HTTP 402 payments on Sui), implemented via mppx + @suimpp/mpp.
Network — Sui mainnet. USDC = 0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC.
Gasless — USDC transfers via 0x2::balance::send_funds (Sui foundation sponsor).
Logging — Prisma + NeonDB. Every payment is logged with its tx digest; browse at mpp.t2000.ai/activity. Agent-to-agent purchases stream on the same feed.
No signup. Every service on the gateway is pay-per-call. Your agent discovers an endpoint, pays for it, gets the response — no account creation, no API key management, no subscription overhead.No vendor lock-in. x402 is an open standard — any service can implement the HTTP 402 challenge spec (the Sui profile lives at suimpp.dev). The gateway is one host; you can run your own.Sui-native. USDC settlement, gasless transfer, finality in ~400ms. The whole flow — pay + retry — usually completes in under 2 seconds.No charge on failure. Payment settles on-chain before the upstream runs (so a forged or unfunded payment can never burn an upstream call), and if that upstream then fails, the gateway issues an automated gasless USDC refund back to your wallet in the same request — net-zero, on-chain-verifiable. You only pay for calls that succeed.