High-speed general-purpose model. Suited for chat, code generation, and data analysis.
all ai models in one integration.
Unified AI model provider. One key, all models, OpenAI-compatible format. Fast, reliable, affordable.
One API, every model
Single OpenAI-compatible endpoint for Grok 4.5, Gemini 3.5 Flash, and GPT 5.6 Sol. No wrappers, no adapters — just work.
Live intelligent pool
Requests are balanced across a live pool of provider accounts. Failover is instant and transparent — you never see a blip.
Zero configuration
Get your key in Telegram, set the base URL, and go. Works with any OpenAI-compatible SDK: Python, JavaScript, curl, Postman.
models in one api
Pick the model for your task — all available through a single endpoint.
Lightweight multimodal model with excellent speed-to-quality ratio. Handles images.
Flagship model with maximum quality. Unlocked by referral or subscription.
how it works
Three steps to your first request.
Get your key in Telegram
Message @ApiOidBot — the bot creates an account and issues an API key. Free starter balance for testing every model.
Use any OpenAI SDK
Set our base URL and your key. Works with the official openai package, curl, Postman, and any OpenAI-compatible library.
Automatic load balancing
Requests are distributed across a live pool of accounts. If one provider fails, routing switches instantly — zero downtime.
quickstart
Copy the example for your language and start sending requests.
# Replace YOUR_API_KEY with the key from @ApiOidBot curl https://darkgate.188-166-189-92.sslip.io/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "model": "grok-4.5", "messages": [ {"role": "user", "content": "Hello! Tell me about yourself"} ] }'
# pip install openai from openai import OpenAI client = OpenAI( base_url="https://darkgate.188-166-189-92.sslip.io/v1", api_key="YOUR_API_KEY", # from @ApiOidBot ) response = client.chat.completions.create( model="grok-4.5", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
// npm install openai import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://darkgate.188-166-189-92.sslip.io/v1", apiKey: "YOUR_API_KEY", // from @ApiOidBot }); const response = await client.chat.completions.create({ model: "grok-4.5", messages: [{ role: "user", content: "Hello!" }], }); console.log(response.choices[0].message.content);
technical specs
Live request routing and pool health.
Request routing
"One endpoint, one key, three frontier models. ApiOid is the simplest way I've found to switch between Grok, Gemini, and GPT without changing a single line of code."
faq
start building.
Get your API key in Telegram and make your first request in under a minute.
Get your key →