Unified API console
One key, one endpoint for Claude, GPT, Gemini, Perplexity, Grok, DeepSeek, Mistral and CLOVA. OpenAI SDK compatible — change only baseURL and you are done.
Create an API key
API keys
Loading…
Usage (OpenAI SDK compatible)
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'uapi-...', // the key you created above
baseURL: 'https://<your-domain>/api/v1',
});
const r = await client.chat.completions.create({
model: 'auto', // or claude-sonnet-4-6 / gpt-4o-mini / sonar …
messages: [{ role: 'user', content: 'Hello' }],
});
console.log(r.choices[0].message.content);BYOK — your own provider keys
Register your own OpenAI/Anthropic keys and calls to those providers run on your key with no markup (billed directly by the provider). Keys are stored encrypted and never shown again.
Available models
| Model | Provider | Tier | Aliases | Input $/1M | Output $/1M |
|---|