Access OpenAI, Anthropic, Google, Meta, and dozens more through a unified API. Smart routing, transparent pricing, and zero vendor lock-in.
Get started in minutes with any OpenAI-compatible library
import OpenAI from 'openai';
const openai = new OpenAI({
baseURL: "https://api.zima.chat/v1",
apiKey: process.env.ZIMA_API_KEY,
});
const completion = await openai.chat.completions.create({
model: "anthropic/claude-3.5-sonnet",
messages: [
{ role: "user", content: "Hello!" }
],
});
// Process the response
const message = completion.choices[0].message;
Join thousands of developers building with zima.chat. Get your API key and start shipping today.