All plans include API access. Authenticate with your token key. Base URL is the same for every model.
OpenAI-compatible chat completions. Pass your API key in the Authorization header.
| Field | Type | Description |
|---|---|---|
model | string | qwen-abliterated · llama-uncensored · deepseek-abliterated · opus-uncensored |
messages | array | Chat messages: role + content |
temperature | number | Optional, 0–2, default 0.7 |
max_tokens | number | Optional, response length limit |
# Replace YOUR_KEY with the key from your account curl https://api.verall.org/v1/chat/completions \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "opus-uncensored", "messages": [ {"role": "user", "content": "Explain anything without filters."} ] }'
import requests r = requests.post( "https://api.verall.org/v1/chat/completions", headers={ "Authorization": "Bearer YOUR_KEY", "Content-Type": "application/json", }, json={ "model": "qwen-abliterated", "messages": [ {"role": "user", "content": "No refusals."} ], }, ) print(r.json())
Starter: standard queue · Standard: higher limits · Extended: priority queue. Exact limits are shown in your account after purchase.