Built for scale, designed for developers, trusted by enterprises worldwide.
Unlimited requests API with a generous free tier and competitive pricing.
Unmetered input and output tokens for your API requests.
Support for image input by providing an image as a Base64-encoded data URL.
Get responses in milliseconds with our optimized infrastructure and edge computing network.
Support for various function calling to enhance your application.
OpenAI SDKs compatible, detailed documentation.
Choose the plan that's right for your needs. Scale up or down anytime.
Get started in minutes with OpenAI SDKs compatible
import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://api.akbxr.com/v1",
apiKey: "YOUR_API_KEY",
});
const completion = await openai.chat.completions.create({
model: "auto",
messages: [{ role: "user", content: "random quotes anime" }],
stream: false
});
console.log(completion.choices[0].message.content);