Uncensored (free)

API ID: venice/uncensored

Input Price
$0.20
/1M tokens
Output Price
$0.90
/1M tokens

About Uncensored (free)

Uncensored (free) is a budget-friendly general-purpose model from Cognitivecomputations with long context (128k), suitable for conversations, content creation, and general AI tasks.

💰
Price Ranking
#838 lowest price among 1240 Chat models

Model Specifications

Context Length
128k
Max Output
8k
Release Date
2025-07-09
Capabilities
chat
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.36
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$11.10
/month
1000 tickets/day, ~800 tokens each

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Undi95 ReMM SLERP 13B
Input: $0.45
Output: $0.65
Context: 6k
Undi95 ReMM SLERP 13B
Input: $0.45
Output: $0.65
Context: 6k
Alibaba Qwen Qwen3 235B A22B Instruct 2507
Input: $0.22
Output: $0.88
Context: 262k
Other DeepSeek R1T2 Chimera
Input: $0.25
Output: $0.85
Context: 164k

🚀 Quick Start

Get started with Uncensored (free) API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="venice/uncensored",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)