Models
Nova AI provides access to multiple AI models, each optimized for different tasks and use cases. Learn about available models and how to choose the right one for your application.
https://novaaiapi.nabzclan.vip/v1/models
Returns a list of all available models with their capabilities and specifications.
List Available Models
curl -X GET https://novaaiapi.nabzclan.vip/v1/models \ -H "Authorization: Bearer nova_your_api_key_here"
{
"object": "list",
"data": [ {
"id": "",
"object": "model",
"created": 1766476895,
"owned_by": "nova-ai",
"name": "nova 1.0",
"name": "nova 1.0",
"description": "Smart model",
"pricing": {
"prompt": "0.000047",
"completion": "0.000228",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1749849150,
"owned_by": "nova-ai",
"name": "nova 1.1",
"name": "nova 1.1",
"description": "nabzclan latest model",
"pricing": {
"prompt": "0.000240",
"completion": "0.000600",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1749850403,
"owned_by": "nova-ai",
"name": "nova 2.0",
"name": "nova 2.0",
"description": "nabz",
"pricing": {
"prompt": "0.000269",
"completion": "0.000384",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
}, {
"id": "",
"object": "model",
"created": 1766814757,
"owned_by": "nova-ai",
"name": "nova 2.0 - Think",
"name": "nova 2.0 - Think",
"description": "Nova 2.0 a thinking model still based on nova 2.2_2024_01_08",
"pricing": {
"prompt": "0.008900",
"completion": "0.082000",
"image": "0.000000",
"file": "0.000000"
},
"capabilities": [@__raw_block_0__{!! implode(', ', array_map(function($cap) { return '"' . $cap . '"'; }, $capabilities)) !!}]
} ]
}
Available Models
nova 1.0
API Name: nova_1_0
Smart model
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
nova 1.1
API Name: nova_1_1
nabzclan latest model
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
nova 2.0
API Name: nova-2-0
nabz
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
nova 2.0 - Think
API Name: nova-2-0-think
Nova 2.0 a thinking model still based on nova 2.2_2024_01_08
Pricing & Capabilities
Best for
- Code generation and completion
- Bug detection and fixing
- Code review and optimization
- Technical documentation
Model Object
Model Properties
id
string
The unique identifier for the model. Use this value in the "model" field of API requests.
object
string
The object type, always "model".
created
integer
Unix timestamp of when the model was added to Nova AI.
owned_by
string
The organization that owns the model, always "nova-ai".
name
string
Human-readable display name for the model.
description
string
A detailed description of the model's capabilities and intended use cases.
capabilities
array
List of features the model supports: images, pdfs, code, documents, thinking, web_search, tools, uncensored.
Using Models in Requests
Specify the model in your chat completion requests:
curl -X POST https://novaaiapi.nabzclan.vip/v1/chat/completions \
-H "Authorization: Bearer nova_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"model": "nova_1_1",
"messages": [
{"role": "user", "content": "Hello, how can you help me today?"}
]
}'
Choosing the Right Model
| Use Case | Recommended Model | Why |
|---|---|---|
| General Chat | nova_1_1 |
Fast, balanced performance for everyday tasks |
| Code Assistance | nova_1_1 |
Optimized for programming tasks |
| Image Analysis | Vision-enabled model | Can process and understand images |
| Complex Reasoning | Thinking-enabled model | Shows step-by-step reasoning process |
| Document Processing | Document-enabled model | Can analyze PDFs and documents |
Models are updated regularly to improve performance and add new capabilities. Check the /api/v1/models endpoint for the latest available models.