Quickstart
Quickstart
Use an OpenAI-compatible client with your API key. Select a model ID from the live model directory.
https://uncensoredai.click/v1import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://uncensoredai.click/v1",
apiKey: process.env.UNCENSOREDAI_API_KEY,
});
const response = await client.chat.completions.create({
model: "Qwen_3.8_27B_Uncensored",
messages: [{ role: "user", content: "Hello!" }],
});Python · Quickstart
from openai import OpenAI
import os
client = OpenAI(
base_url="https://uncensoredai.click/v1",
api_key=os.environ["UNCENSOREDAI_API_KEY"],
)
stream = client.chat.completions.create(
model="Qwen_3.8_27B_Uncensored",
messages=[{"role": "user", "content": "Hello!"}],
max_tokens=512,
stream=True,
)
for chunk in stream:
if chunk.choices:
print(chunk.choices[0].delta.content or "", end="")curl · Quickstart
curl https://uncensoredai.click/v1/chat/completions \
-H "Authorization: Bearer $UNCENSOREDAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen_3.8_27B_Uncensored",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 512
}'Authentication
Send your API key in the Authorization: Bearer header. Keep it on your server and never include it in public source code.
Billing
Input and output tokens are billed separately in USD. Your group price and any personal rate apply. Final charges appear in Usage. No unpriced model is sold.
Streaming
Set stream to true for server-sent events. Request usage with stream_options.include_usage. Stop or disconnect to cancel the request.
Errors
401: invalid key. 403: access or balance restriction. 429: rate or concurrency limit. 502/503: upstream unavailable.
Payments
Only USDT on BNB Smart Chain is supported at launch. Never send another asset or use another network. Deposits remain disabled until a receiving wallet is configured.
Data & privacy
We retain account, billing and request metadata needed to operate the service. Playground history stays in your browser. API requests are sent to the selected model provider. There is no cloud chat-history feature.