all ai models in one integration.

Unified AI model provider. One key, all models, OpenAI-compatible format. Fast, reliable, affordable.

https://darkgate.188-166-189-92.sslip.io/v1
01

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.

02

Live intelligent pool

Requests are balanced across a live pool of provider accounts. Failover is instant and transparent — you never see a blip.

03

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.

Grok 4.5
grok-4.5 · xAI
Available

High-speed general-purpose model. Suited for chat, code generation, and data analysis.

Loading quota…
Gemini 3.5 Flash
gemini-3.5-flash · Google
Active

Lightweight multimodal model with excellent speed-to-quality ratio. Handles images.

Loading quota…
GPT 5.6 Sol
gpt-5.6-sol · OpenAI
Referral

Flagship model with maximum quality. Unlocked by referral or subscription.

Loading quota…

how it works

Three steps to your first request.

01

Get your key in Telegram

Message @ApiOidBot — the bot creates an account and issues an API key. Free starter balance for testing every model.

02

Use any OpenAI SDK

Set our base URL and your key. Works with the official openai package, curl, Postman, and any OpenAI-compatible library.

03

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

/v1/chat/completions
API
Grok 4.5
Model
Gemini 3.5
Model
GPT 5.6 Sol
Model
▸ Pool
Balancer
grok-4.5
gemini-3.5-flash
gpt-5.6-sol
Total pool
active accounts
Grok web
provider accounts
Grok build
provider accounts
Checking pool…
"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."
— api user, 2026

faq

ApiOid is a proxy service providing a single OpenAI-compatible endpoint for multiple AI models. You get one key from Telegram and can use any SDK that works with the OpenAI API.
Message @ApiOidBot on Telegram. The bot creates an account and issues a key. Free starter balance is provided for testing all models.
Grok 4.5 (xAI), Gemini 3.5 Flash (Google), and GPT 5.6 Sol (OpenAI). Models are added as the pool expands. Live status is shown on this page.
GPT 5.6 Sol is the flagship model with limited access. Invite a friend in the bot or upgrade to unlock it. Status is shown in the console.
Yes, limits depend on the model and your plan. Current quotas are shown in the console after connecting your key. The free tier has basic limits.

start building.

Get your API key in Telegram and make your first request in under a minute.

Get your key →