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
| Model | Tokens | Cost | Status | Time |
|---|---|---|---|---|
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
| Name | Key Prefix | Status | Created | Last Used | Actions |
|---|---|---|---|---|---|
Loading...
Usage Analytics
Daily Requests (Last 7 Days)
Request Log
| Model | Tokens | Cost | Status | Timestamp |
|---|---|---|---|---|
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
| Date | Description | Amount | Status |
|---|---|---|---|
| Loading... | |||
Playground
Send a message to see the response here.
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/completionsGET /v1/modelsGET /v1/user/meGET /v1/user/usageGET /v1/user/keysPOST /v1/user/keysDELETE /v1/user/keys/:idGET /v1/user/billingPOST /v1/checkout/subscribePOST /v1/checkout/packPOST /v1/checkout/portalGET /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: