Use this file to discover all available pages before exploring further.
Agent Payments is the MPP (Machine Payments Protocol) gateway at mpp.t2000.ai — paid HTTP APIs that AI agents can pay for autonomously with USDC on Sui. No signup, no API keys, no accounts. Pay $0.005 – $0.05 per LLM call. Pay $1.00 – $1.50 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.
# 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 ~100 LLM calls)t2 receive# (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 MPP 402 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.01
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".
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:
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. MPP is an open protocol — any service can implement the 402 challenge spec 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.