Adorbis API Docs
The Adorbis API is fully OpenAI-compatible. Change one line of code and every request automatically routes to the cheapest model that can handle it.
Base URL: https://api.adorbistech.com/v1
Quickstart
You're 30 seconds away from intelligent AI routing. No new SDK required.
Python
# pip install openai from openai import OpenAI client = OpenAI( api_key="your_adorbis_key", base_url="https://api.adorbistech.com/v1" ) response = client.chat.completions.create( model="adorbis/auto", # picks cheapest capable model messages=[{"role": "user", "content": "Hello"}] ) print(response.choices[0].message.content)
Node.js
// npm install openai import OpenAI from "openai"; const client = new OpenAI({ apiKey: "your_adorbis_key", baseURL: "https://api.adorbistech.com/v1" }); const response = await client.chat.completions.create({ model: "adorbis/auto", messages: [{ role: "user", content: "Hello" }] }); console.log(response.choices[0].message.content);
Claude Code / Cursor
# In Claude Code settings.json or Cursor config: { "apiKey": "your_adorbis_key", "baseUrl": "https://api.adorbistech.com" }
Authentication
All requests require a Bearer token in the Authorization header.
Authorization: Bearer adorbis_xxxxxxxxxxxxxxxxxxxx
Get your API key at ai.adorbistech.com/auth — it appears instantly on signup. No card required for the Free plan.
Models
Use smart routing aliases or route directly to any model. Smart routing is always recommended — it picks the cheapest model capable of your task.
adorbis/autoDynamicEverything — auto-selects cheapest
adorbis/quickLlama 3.2 localSummaries, formatting, Q&A
adorbis/codeDeepSeek CoderBug fixes, code review, refactor
adorbis/writingGemini 2.5 FlashLong-form content, analysis
adorbis/imageImagen 4Image generation (Pro plan+)
All models accessible via GET /v1/models
Chat Completions
/v1/chat/completions
Fully OpenAI-compatible. Supports streaming, system prompts, and multi-turn conversations.
{
"model": "adorbis/auto",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "Explain quantum computing simply." }
],
"stream": false
}
Credits
1 Adorbis Credit (AC) = $0.001 USD. Credits are deducted per request based on model used and tokens processed.
BYO-VPC (Enterprise)
Deploy the Adorbis Data Plane inside your own VPC. Your data never leaves your infrastructure. Contact sales to get started.
- ✓ AWS, GCP, Azure, bare metal
- ✓ EU/US data residency enforcement
- ✓ BERT-based PII scrubbing before routing
- ✓ Zero-trust Hybrid CMEK (RSA / AWS KMS)
- ✓ Signed telemetry exports · Immutable audit ledger