API REFERENCE

One base URL change.

AblitAI implements the OpenAI chat-completions interface and server-sent-event streaming.

Python

from openai import OpenAI

client = OpenAI(
    api_key="sk-ablit-...",
    base_url="https://api.ablitai.com/v1",
)

response = client.chat.completions.create(
    model="qwen3.8-27b-abliterated",
    messages=[{"role": "user", "content": "Your prompt"}],
)
print(response.choices[0].message.content)

cURL

curl https://api.ablitai.com/v1/chat/completions \
  -H "Authorization: Bearer $ABLITAI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen3.8-27b-abliterated","messages":[{"role":"user","content":"Your prompt"}]}'

Models

Call GET /v1/models to discover the currently available model IDs. Context limits and measured throughput will be published after hardware burn-in.

Authentication

Send the API key as a bearer token. Never put it in a URL, query string, client-side source repository, or support message.

Errors

Retention

AblitAI does not intentionally retain prompts or generated responses. Requests are processed in memory by the gateway and inference service. See the privacy notice for infrastructure-provider boundaries.