๐ญ Venice
Uncensored inference โ 75 models with zero content filters, best for Claude & Kimi
Venice
Avg Speed
48 tok/s
Models
75
Price
Uncensored
Best For
Claude, Kimi, Grok
๐ฐ Plan & Pricing
Uncensored โ Venice provides uncensored inference with zero content filters. All 75 models have no safety guardrails. No prompt logging.
๐ API Key
๐ Endpoint
https://api.venice.ai/v1/chat/completions
๐ฆ Key Models (75 total โ all uncensored)
| Model | Speed | Category | Notes |
|---|---|---|---|
| grok-4 | โก 102 tok/s | Chat | ๐ฅ Grok-4 EXCLUSIVE |
| kimi-k2.6 | โก 93 tok/s | Chat | ๐ฅ Kimi K2.6 best |
| kimi-k2.5 | โก 86 tok/s | Chat | ๐ฅ Kimi K2.5 best |
| deepseek-v4-pro | โก 50 tok/s | Chat/Reasoning | Uncensored DS-V4-Pro |
| deepseek-r1 | โก 48 tok/s | Reasoning | Uncensored DeepSeek R1 |
| llama-3.3-70b | โก 45 tok/s | Chat | Uncensored Llama |
| llama-4-maverick | โก 42 tok/s | Chat | Uncensored Llama 4 |
| qwen3-235b | โก 38 tok/s | Chat/Coding | Uncensored Qwen3 |
| claude-opus-4-6 | โก 33 tok/s | Reasoning | ๐ฅ Claude Opus best |
| claude-sonnet-4-5 | โก 35 tok/s | Chat | ๐ฅ Claude Sonnet best |
| claude-3.5-sonnet | โก 32 tok/s | Chat | Claude 3.5 Sonnet |
| flux-1 | โ | Image Gen | ๐ฅ Uncensored image gen |
+ 63 more models covering Gemini, GPT, Mistral, Qwen โ all uncensored
๐ป cURL Example
curl -X POST https://api.venice.ai/v1/chat/completions \
-H "Authorization: Bearer VENICE_INFERENCE_KEY_VSAPyWbzMZpoT5-gXDxPV6TFG23DO2CT0CrlJ_2qVs" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-5",
"messages": [{"role": "user", "content": "Hello!"}]
}'
๐ Python Example
from openai import OpenAI
client = OpenAI(
api_key="VENICE_INFERENCE_KEY_VSAPyWbzMZpoT5-gXDxPV6TFG23DO2CT0CrlJ_2qVs",
base_url="https://api.venice.ai/v1"
)
response = client.chat.completions.create(
model="claude-sonnet-4-5",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
โ ๏ธ Pitfalls & Notes
Zero Content Filters โ Venice is built for uncensored inference. No prompt logging, no content safety filters, no refusal patterns. Best for unrestricted workflows.
Claude & Kimi Champion โ Venice is the best provider for Claude Opus 4.6, Claude Sonnet 4.5, and Kimi K2.5/K2.6 in terms of speed and availability.
Grok-4 Exclusive โ Venice is the exclusive provider for Grok-4 among our tested providers.
๐ท๏ธ Categories
Chat
Reasoning
Coding
Image Gen