Skip to content

Quick Start Guide

Get up and running with Nova AI models in minutes.

1. Choose Your Model

Select the model that fits your use case:

Best for: High-volume, simple tasks, cost efficiency. (No streaming/vision)

curl https://aiservices.novasuite.one/api/v1/modela-9-pico \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer nvai_sk_YOUR_API_KEY" \
  -d '{
    "message": "Classify this text: The product is great!",
    "context": "Return only: Positive, Neutral, or Negative"
  }'

Best for: Real-time chat, mobile apps, low latency.

curl https://aiservices.novasuite.one/api/v1/modela-9-nano \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer nvai_sk_YOUR_API_KEY" \
  -d '{
    "message": "Hello, how are you?",
    "context": "You are a helpful AI assistant."
  }'

Best for: General purpose, balanced reasoning, vision support.

curl https://aiservices.novasuite.one/api/v1/modela-9 \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer nvai_sk_YOUR_API_KEY" \
  -d '{
    "message": "Write a blog post about AI.",
    "context": "You are a professional copywriter."
  }'

Best for: Complex reasoning, coding, deep analysis, vision.

curl https://aiservices.novasuite.one/api/v1/modela-9-pro \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer nvai_sk_YOUR_API_KEY" \
  -d '{
    "message": "Analyze this code for security vulnerabilities...",
    "context": "You are a cybersecurity expert."
  }'

What's Next?