Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.uncensored.com/llms.txt

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

Chat Completions Coming soon

POST /v1/chat/completions
This endpoint is planned as an OpenAI-compatible chat completion API, but it is not live for developers yet.

Planned request body

ParameterTypeRequiredDescription
modelstringYesModel ID to use.
messagesarrayYesConversation messages.
temperaturefloatNoSampling temperature between 0 and 2.
top_pfloatNoNucleus sampling between 0 and 1.
max_tokensintegerNoMaximum tokens to generate.
streambooleanNoWhether to stream Server-Sent Events.

Planned SDK shape

from openai import OpenAI

client = OpenAI(
    base_url="https://api.uncensored.com/api/v1",
    api_key="YOUR_API_KEY",
    default_headers={"x-api-key": "YOUR_API_KEY"}
)
Do not treat chat model IDs as available until this page is moved from coming soon to live.