Skip to main content
abliteration.ai exposes HTTP APIs compatible with both the OpenAI and Anthropic SDKs. Point any client library at our base URL and you’re done.

Base URL

https://api.abliteration.ai/v1
The same base URL serves the Anthropic-compatible Messages API at /v1/messages, the Responses API at /v1/responses, and count tokens at /v1/messages/count_tokens.

Authentication

All requests require a bearer token:
Authorization: Bearer $ABLIT_KEY
See Authentication.

Example

curl https://api.abliteration.ai/v1/chat/completions \
  -H "Authorization: Bearer $ABLIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "abliterated-model",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

OpenAPI

The full spec is published at: Use it to generate typed clients or import into Postman. See Postman & OpenAPI.

Versioning

The API is stable and backwards-compatible. Deprecations are announced in release notes with at least 30 days of notice.