Nova AI Chat Completions is Live
We are excited to announce a brand new endpoint on the Nabzclan Developer API: Nova AI Chat Completions. You can now generate AI-powered text responses directly through our platform using the familiar OpenAI-compatible chat format.
What is it?
The Nova AI Chat Completions API lets you send a conversation of messages and receive an AI-generated reply. It supports system prompts, multi-turn conversations, temperature control, token limits, and streaming responses.
Endpoint
POST https://developer.nabzclan.vip/api/v1/novaai/chat/completions
Quick Example
curl -X POST https://developer.nabzclan.vip/api/v1/novaai/chat/completions \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d \x27{
"model": "nova_1_1",
"messages": [{"role": "user", "content": "Write a haiku about programming"}],
"temperature": 0.7,
"max_tokens": 100
}\x27
Available Models
Check out all available Nova AI models and their capabilities in the Nova AI Model Docs.
Rate Limits
This endpoint uses your plan\x27s AI request limits. Free users get 10 AI requests per day, and VIP plans get up to 10,000 per day. Check the full documentation for details.
Get Started
Head over to your Dashboard to grab your API token and start building with Nova AI today. Full docs are available at Nova AI Chat Completion docs.