Access Claude Opus 4.8, Sonnet 4.6, GPT & Gemini through a single OpenAI-compatible API. Per-key quota, rate limits, and usage tracking built in.
https://bob.rumahwebku.my.id/v1
Frontier models, aggregated across a rotating account pool.
Pick a package. Keys are issued instantly from the dashboard.
Drop-in replacement for the OpenAI API — just change base URL & key.
curl https://bob.rumahwebku.my.id/v1/chat/completions \
-H "Authorization: Bearer sk-bob-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "ultra",
"messages": [{"role":"user","content":"Hello Bob"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://bob.rumahwebku.my.id/v1",
api_key="sk-bob-YOUR_KEY",
)
r = client.chat.completions.create(
model="ultra",
messages=[{"role":"user","content":"Hello Bob"}],
)
print(r.choices[0].message.content)