---

Welcome back

---
Credits Remaining
Total Requests
Models Available
38 active
System Status
Healthy
Quick Start
Your API Key
sk-ador-...loading
Base URL
https://api.adorbistech.com/v1
Recent Activity
ModelTokensCostStatusTime
Integration Snippets
from openai import OpenAI

client = OpenAI(
    base_url="https://api.adorbistech.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="adorbis/auto",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  baseURL: 'https://api.adorbistech.com/v1',
  apiKey: 'YOUR_API_KEY'
});

const response = await client.chat.completions.create({
  model: 'adorbis/auto',
  messages: [{ role: 'user', content: 'Hello!' }]
});
console.log(response.choices[0].message.content);
curl https://api.adorbistech.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "adorbis/auto",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
claude --api-base https://api.adorbistech.com/v1

API Keys

NameKey PrefixStatusCreatedLast UsedActions
Loading...

Usage Analytics

Daily Requests (Last 7 Days)
Request Log
ModelTokensCostStatusTimestamp

Billing & Plans

Current Plan
---
Loading...
Upgrade Your Plan

Starter

$10/month
  • 15,000 credits/month
  • 1,000 daily requests
  • 5 API keys
  • Standard models
  • Email support

Pro

$30/month
  • 50,000 credits/month
  • 5,000 daily requests
  • 10 API keys
  • All models including premium
  • Priority support
  • Advanced analytics

Business

$100/month
  • 200,000 credits/month
  • Unlimited daily requests
  • 25 API keys
  • All models + early access
  • Dedicated support
  • SLA guarantee
  • Custom integrations
Credit Packs
Micro
5,000 credits
$5
Standard
25,000 credits
$20
Bulk
100,000 credits
$60
Mega
500,000 credits
$250
Invoices
DateDescriptionAmountStatus
Loading...

Playground

Send a message to see the response here.
Tokens: -- Latency: --

Documentation

Base URL

https://api.adorbistech.com/v1

Authentication

Include your API key in the Authorization header:

Authorization: Bearer sk-ador-xxxx

Available Endpoints

  • POST /v1/chat/completions
  • GET /v1/models
  • GET /v1/user/me
  • GET /v1/user/usage
  • GET /v1/user/keys
  • POST /v1/user/keys
  • DELETE /v1/user/keys/:id
  • GET /v1/user/billing
  • POST /v1/checkout/subscribe
  • POST /v1/checkout/pack
  • POST /v1/checkout/portal
  • GET /v1/user/invoices

Rate Limits

  • Free: 500 requests/day
  • Starter: 1,000 requests/day
  • Pro: 5,000 requests/day
  • Business: Unlimited

Rate limit headers are included in every response:

X-RateLimit-Remaining: 450 X-RateLimit-Reset: 1717027200

Full Documentation

For comprehensive guides, model catalog, and advanced usage, visit:

https://ai.adorbistech.com/docs