๐ŸŽญ

Venice

Speed: โšก 48 tok/s avg
Models: 75
Price: Uncensored
Status: โœ… Online
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

VENICE_INFERENCE_KEY_VSAPyWbzMZpoT5-gXDxPV6TFG23DO2CT0CrlJ_2qVs

๐ŸŒ Endpoint

https://api.venice.ai/v1/chat/completions

๐Ÿ“ฆ Key Models (75 total โ€” all uncensored)

ModelSpeedCategoryNotes
grok-4โšก 102 tok/sChat๐Ÿ”ฅ Grok-4 EXCLUSIVE
kimi-k2.6โšก 93 tok/sChat๐Ÿฅ‡ Kimi K2.6 best
kimi-k2.5โšก 86 tok/sChat๐Ÿฅ‡ Kimi K2.5 best
deepseek-v4-proโšก 50 tok/sChat/ReasoningUncensored DS-V4-Pro
deepseek-r1โšก 48 tok/sReasoningUncensored DeepSeek R1
llama-3.3-70bโšก 45 tok/sChatUncensored Llama
llama-4-maverickโšก 42 tok/sChatUncensored Llama 4
qwen3-235bโšก 38 tok/sChat/CodingUncensored Qwen3
claude-opus-4-6โšก 33 tok/sReasoning๐Ÿฅ‡ Claude Opus best
claude-sonnet-4-5โšก 35 tok/sChat๐Ÿฅ‡ Claude Sonnet best
claude-3.5-sonnetโšก 32 tok/sChatClaude 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