Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.abliteration.ai/llms.txt

Use this file to discover all available pages before exploring further.

To make your first request to abliteration.ai, generate an API key in the console, then POST to https://api.abliteration.ai/v1/chat/completions with the OpenAI request shape. Takes under a minute.

1. Get an API key

Sign in to the console and create a key. Keys are bearer tokens.
export ABLIT_KEY=ak_YOUR_API_KEY

2. Make a request

Base URL: https://api.abliteration.ai/v1. See the API overview for all supported endpoints.
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"}]
  }'

3. Stream tokens

Set stream: true to render tokens as they arrive. See streaming for details.

Next steps

Last modified on May 3, 2026