One SDK. Every AI Provider.
A unified gateway that connects OpenAI, Anthropic, Google Gemini, Groq, Mistral & more โ with smart auto-routing, PHI sanitization, and built-in cost tracking.
import RemoteAI from "remoteai";
const ai = new RemoteAI({
providers: {
openai: { apiKey: process.env.OPENAI_KEY },
claude: { apiKey: process.env.CLAUDE_KEY },
gemini: { apiKey: process.env.GEMINI_KEY },
},
routing: "auto", // smart routing by default
costTracking: true,
});
const response = await ai.chat([
{ role: "user", content: "Summarize this report." }
]);
console.log(response.text);
console.log(response.meta);
// { provider: "claude", model: "claude-3-haiku", cost: "$0.0004", latency: "312ms" }Click a provider to see available models
Add a new provider with one config block. No refactoring needed.
Zero-config mode auto-picks the best model for your use case type.
Per-request and session-level breakdowns. Export to CSV or JSON.
Unified streaming API across all providers โ same interface everywhere.
Define fallback chains. RemoteAI retries on failure seamlessly.
Request structured outputs from any provider using a shared schema spec.
Sign in to access your free API key, usage dashboard, and billing.
25 requests/month free ยท No credit card required
Test RemoteAI's smart routing live โ get a free API key and run prompts instantly.
25 requests/month free. No credit card required.
Already have a key? Paste it in the Playground tab.
One API key. Every AI provider. Smart routing included. Get started free โ 25 requests/month, no credit card required.
๐ Get Your Free API KeyA PulseDataEngineer ยท TechPulse initiative ยท info@pulsedataengineer.com