One API for 300+ AI Models

Access OpenAI, Anthropic, Google, Meta, and dozens more through a unified API. Smart routing, transparent pricing, and zero vendor lock-in.

Simple to Integrate

Get started in minutes with any OpenAI-compatible library

example.js
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;

Ready to get started?

Join thousands of developers building with zima.chat. Get your API key and start shipping today.