Getting Started
Welcome to our API documentation. Get up and running with our powerful chat API in minutes.
1. Get your API Key
Sign up for an account and get your API key from the dashboard.
2. Make your first request
Try this example to get started:
curl -X POST https://uncensored.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "uncensored-v2",
"messages": [
{
"role": "user",
"content": "Hello, world!"
}
]
}'Key Features
Build engaging chat experiences with our state-of-the-art language models. Support for multi-turn conversations and context awareness.
Get responses as they're generated with streaming support. Perfect for building responsive chat interfaces.
Enterprise-grade security with API key authentication. 99.9% uptime SLA and rate limiting protection.
RESTful API with comprehensive documentation. SDKs available for popular programming languages.
uncensored-v2RecommendedHigh-performance model for general conversation and complex reasoning tasks
More models coming soon...Coming SoonWe're working on adding more models to give you more options
API Key Authentication
All API requests require authentication using your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYEndpoint: https://uncensored.chat/api/v1/chat/completionsKeep your API key secure and never expose it in client-side code. Always make API calls from your backend server.