Use any model, from any provider
— with just one API.
Route, manage, and analyze your LLM requests across multiple providers with a unified API interface.
1import OpenAI from "openai";23const client = new OpenAI({4 apiKey: process.env.UNITEROUTER_API_KEY,5 baseURL: "https://api.uniterouter.ai/v1"6});78const response = await client.chat.completions.create({9 model: "gpt-5",10 messages: [11 { role: "user", content: "Hello, how are you?" }12 ]13});1415console.log(response.choices[0].message.content);

