# t2000 MPP Gateway — Sui USDC > MPP-enabled APIs payable with Sui USDC. No API keys. No accounts. Just pay. > Docs: https://t2000.ai/docs > Service discovery: https://mpp.t2000.ai/api/services ## Use with t2000 Install the CLI and create an agent wallet: $ npm i -g @t2000/cli && t2000 init Make a paid request: $ t2000 pay https://mpp.t2000.ai/openai/v1/chat/completions \ --data '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}' \ --max-price 0.05 Or use the SDK: import { T2000 } from '@t2000/sdk'; const agent = await T2000.create(); const result = await agent.pay({ url: '...', body: '...', maxPrice: 0.05 }); ## MCP (Claude Desktop, Cursor, Windsurf) If using t2000 via MCP, two tools handle MPP payments: - t2000_services — Discover all available services, endpoints, and prices. Call this first. - t2000_pay — Make a paid API request. Handles 402 payment challenges automatically. Natural language examples: "Search the web for Sui blockchain news" → Brave Search ($0.005) "Generate an image of a sunset" → Fal.ai Flux ($0.03) "Buy a $20 Netflix gift card" → Reloadly ($21.00 dynamic) "Send a postcard to 123 Main St" → Lob ($1.00) "What's the weather in Tokyo?" → OpenWeather ($0.005) "Execute this Python code" → Judge0 ($0.005) ## Services ### OpenAI Chat, embeddings, images, and audio. Base URL: https://mpp.t2000.ai/openai - POST /v1/chat/completions — Chat completions (GPT-4o, o1, etc.) — $0.01 - POST /v1/embeddings — Create embeddings — $0.001 - POST /v1/images/generations — Generate images with DALL-E — $0.05 - POST /v1/audio/transcriptions — Transcribe audio with Whisper — $0.01 - POST /v1/audio/speech — Text-to-speech — $0.02 ### Anthropic Claude models — Sonnet, Opus, Haiku. Base URL: https://mpp.t2000.ai/anthropic - POST /v1/messages — Chat completions (Sonnet, Opus, Haiku) — $0.01 ### fal.ai Image and audio generation — Flux, Recraft, Whisper. Base URL: https://mpp.t2000.ai/fal - POST /fal-ai/flux/dev — Flux Dev image generation — $0.03 - POST /fal-ai/flux-pro — Flux Pro image generation — $0.05 - POST /fal-ai/flux-realism — Flux Realism (photorealistic) — $0.03 - POST /fal-ai/recraft-20b — Recraft 20B image generation — $0.03 - POST /fal-ai/whisper — Speech-to-text transcription — $0.01 ### Firecrawl Scrape, crawl, map, and extract from any website. Base URL: https://mpp.t2000.ai/firecrawl - POST /v1/scrape — Scrape a URL to structured data — $0.01 - POST /v1/crawl — Crawl a website — $0.05 - POST /v1/map — Discover URLs on a site — $0.01 - POST /v1/extract — Extract structured data with LLM — $0.02 ### Google Gemini Gemini chat, reasoning, and embeddings. Base URL: https://mpp.t2000.ai/gemini - POST /v1beta/models/gemini-2.5-flash — Gemini 2.5 Flash (fast, multimodal) — $0.005 - POST /v1beta/models/gemini-2.5-pro — Gemini 2.5 Pro (reasoning) — $0.02 - POST /v1beta/models/embedding-001 — Text embeddings — $0.001 ### Groq Ultra-fast LLM inference — Llama, Mixtral, Gemma. Base URL: https://mpp.t2000.ai/groq - POST /v1/chat/completions — Chat completions (Llama 3, Mixtral, Gemma) — $0.005 - POST /v1/audio/transcriptions — Audio transcription (Whisper) — $0.005 ### Perplexity AI search with real-time web citations. Base URL: https://mpp.t2000.ai/perplexity - POST /v1/chat/completions — Sonar search (web-grounded answers) — $0.01 ### Brave Search Web, image, news, and video search with AI summaries. Base URL: https://mpp.t2000.ai/brave - POST /v1/web/search — Web search results — $0.005 - POST /v1/images/search — Image search — $0.005 - POST /v1/news/search — News search — $0.005 - POST /v1/videos/search — Video search — $0.005 - POST /v1/summarizer/search — AI-summarized search — $0.01 ### DeepSeek DeepSeek reasoning and chat models. Base URL: https://mpp.t2000.ai/deepseek - POST /v1/chat/completions — Chat completions (DeepSeek-V3, R1 reasoning) — $0.005 ### Resend Transactional and batch email delivery. Base URL: https://mpp.t2000.ai/resend - POST /v1/emails — Send an email — $0.005 - POST /v1/emails/batch — Send batch emails (up to 100) — $0.01 ### Together AI Open-source models — Llama, Qwen, Mixtral, FLUX. Base URL: https://mpp.t2000.ai/together - POST /v1/chat/completions — Chat completions (Llama 4, Qwen, Mixtral) — $0.005 - POST /v1/images/generations — Image generation (FLUX, Stable Diffusion) — $0.03 - POST /v1/embeddings — Text embeddings — $0.001 ### ElevenLabs AI voice synthesis, cloning, and sound effects. Base URL: https://mpp.t2000.ai/elevenlabs - POST /v1/text-to-speech/:voiceId — Text-to-speech (any voice) — $0.02 - POST /v1/sound-generation — AI sound effects generation — $0.03 ### OpenWeather Current weather, forecasts, and climate data. Base URL: https://mpp.t2000.ai/openweather - POST /v1/weather — Current weather by city or coordinates — $0.005 - POST /v1/forecast — 5-day / 3-hour forecast — $0.005 ### Google Maps Geocoding, places search, and directions. Base URL: https://mpp.t2000.ai/googlemaps - POST /v1/geocode — Address to coordinates (and reverse) — $0.005 - POST /v1/places — Text-based places search — $0.01 - POST /v1/directions — Route directions between locations — $0.01 ### Judge0 Execute code in 70+ programming languages. Base URL: https://mpp.t2000.ai/judge0 - POST /v1/submissions — Submit and execute code — $0.005 - POST /v1/languages — List supported languages — $0.001 ### Reloadly Gift Cards Buy gift cards (Amazon, Steam, Netflix, 800+ brands) with USDC. Base URL: https://mpp.t2000.ai/reloadly - POST /v1/products — Browse gift card catalog by country — $0.005 - POST /v1/order — Purchase a gift card (dynamic price: face value + 5%) — $dynamic ### Lob Send physical mail — postcards, letters, and address verification. Base URL: https://mpp.t2000.ai/lob - POST /v1/postcards — Send a physical postcard — $1.00 - POST /v1/letters — Send a physical letter — $1.50 - POST /v1/verify — Verify a US address — $0.01 ### CoinGecko Crypto prices, market data, and trending coins. Base URL: https://mpp.t2000.ai/coingecko - POST /v1/price — Get price for coins (by ID, vs currencies) — $0.005 - POST /v1/markets — Market data — price, cap, volume, sparkline — $0.005 - POST /v1/trending — Trending coins and searches — $0.005 ### Alpha Vantage Stock quotes, time series, and symbol search. Base URL: https://mpp.t2000.ai/alphavantage - POST /v1/quote — Real-time stock quote (price, change, volume) — $0.005 - POST /v1/daily — Daily time series (OHLCV) — $0.005 - POST /v1/search — Search for stock symbols by keyword — $0.005 ### NewsAPI Breaking news and article search across 150k+ sources. Base URL: https://mpp.t2000.ai/newsapi - POST /v1/headlines — Top headlines by country, category, or source — $0.005 - POST /v1/search — Search articles by keyword, date range, language — $0.005 ### DeepL AI-powered translation across 30+ languages. Base URL: https://mpp.t2000.ai/deepl - POST /v1/translate — Translate text with context-aware AI — $0.005 ### Exa AI-native semantic search — finds content by meaning. Base URL: https://mpp.t2000.ai/exa - POST /v1/search — Semantic search with optional content extraction — $0.01 - POST /v1/contents — Extract clean content from URLs — $0.01 ### Jina Reader Convert any URL to clean LLM-ready markdown. Base URL: https://mpp.t2000.ai/jina - POST /v1/read — Read a URL and return clean markdown — $0.005 ### Serper Google Search results as structured JSON — fast and cheap. Base URL: https://mpp.t2000.ai/serper - POST /v1/search — Google web search with rich snippets — $0.005 - POST /v1/images — Google image search results — $0.005 ### ScreenshotOne Capture any webpage as PNG, JPEG, or PDF. Base URL: https://mpp.t2000.ai/screenshot - POST /v1/capture — Screenshot a URL (configurable viewport, format) — $0.01 ### PDFShift Convert HTML or URLs to professional PDF documents. Base URL: https://mpp.t2000.ai/pdfshift - POST /v1/convert — Convert HTML source or URL to PDF — $0.01 ### QR Code Generate QR codes for any URL or text. Base URL: https://mpp.t2000.ai/qrcode - POST /v1/generate — Generate a QR code image (PNG, SVG) — $0.005 ### Replicate Run any open-source ML model — Llama, SDXL, Whisper, and thousands more. Base URL: https://mpp.t2000.ai/replicate - POST /v1/predictions — Run a model (sync — waits for result) — $0.02 - POST /v1/predictions/status — Check prediction status by ID — $0.001 ### Stability AI Image generation and editing — Stable Diffusion 3, search-and-replace. Base URL: https://mpp.t2000.ai/stability - POST /v1/generate — Generate an image from text (SD3) — $0.03 - POST /v1/edit — Search-and-replace edit on an image — $0.03 ### AssemblyAI Advanced transcription — speaker labels, summaries, chapters. Base URL: https://mpp.t2000.ai/assemblyai - POST /v1/transcribe — Submit audio URL for transcription — $0.02 - POST /v1/result — Get transcription result by ID (free — paid on submit) — $0.001 ### E2B Cloud sandboxes — run arbitrary code safely in isolation. Base URL: https://mpp.t2000.ai/e2b - POST /v1/execute — Execute code in an isolated sandbox — $0.01 ### Hunter.io Find professional email addresses by domain or verify deliverability. Base URL: https://mpp.t2000.ai/hunter - POST /v1/search — Find emails by domain name — $0.01 - POST /v1/verify — Verify an email address — $0.01 ### IPinfo IP geolocation, ASN, company, and VPN detection. Base URL: https://mpp.t2000.ai/ipinfo - POST /v1/lookup — Look up IP address details (geo, ASN, company) — $0.005 ### Google Translate Translation and language detection — 130+ languages. Base URL: https://mpp.t2000.ai/translate - POST /v1/translate — Translate text between languages — $0.005 - POST /v1/detect — Detect the language of text — $0.005 ### SerpAPI Google, Bing, YouTube search results with structured data. Base URL: https://mpp.t2000.ai/serpapi - POST /v1/search — Google search with rich structured results — $0.01 - POST /v1/locations — Search locations for geo-targeted queries — $0.005 ### Printful Print-on-demand — shirts, mugs, posters, shipped to any address. Base URL: https://mpp.t2000.ai/printful - POST /v1/products — Browse catalog — all products, or by ID for sizes/colors — $0.005 - POST /v1/estimate — Get shipping and cost estimate for an order — $0.005 - POST /v1/order — Place a print-on-demand order (dynamic price: cost + 5%) — $dynamic ## Payment All services accept Sui USDC via MPP (Machine Payments Protocol). Chain: Sui · Currency: USDC (Circle) · Settlement: ~400ms · Gas: <$0.001