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.

Uncensored AI Developers API

The Uncensored AI Developers API gives developers programmatic access to media generation and AI model workflows.
Image generation is the only live public model surface in this documentation iteration. Chat, image editing, video, audio, tools, and embeddings are marked as coming soon until those surfaces are ready for developer use.

Base URL

https://api.uncensored.com/api
All documented endpoint paths are relative to this base URL. For example:
POST https://api.uncensored.com/api/v1/images/generations

Current availability

Product areaStatusNotes
Image generationLiveGenerate images from text prompts.
Image studio / editingComing soonClothing modification, face swap, and image edit workflows are not public yet.
Chat completionsComing soonOpenAI-compatible chat API planned.
Video generationComing soonAsync video generation planned.
AudioComing soonAudio APIs planned.
ToolsComing soonUtility APIs such as prompt enhancement planned.
EmbeddingsComing soonEmbedding APIs planned.

Quick start

Generate an image with a live image model:
curl --request POST "https://api.uncensored.com/api/v1/images/generations" \
  --header "x-api-key: YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "model": "model-dev",
    "prompt": "A cinematic portrait, natural light, high detail",
    "image_width": 1024,
    "image_height": 1024
  }'

Response format

Successful API responses return JSON. Async endpoints return a job_id and a status_url that can be polled until the job completes. Errors use a consistent envelope:
{
  "error": {
    "message": "Human-readable error description",
    "type": "invalid_request_error",
    "param": "model",
    "code": "model_not_found"
  }
}