Skip to main content
Make your first request to abliteration.ai in under a minute.

1. Get an API key

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

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