Authentication

All requests require a Nova API key passed as a Bearer token in the Authorization header.

http
Authorization: Bearer nova-YOUR_API_KEY

Get your API key from the Console → API Keys page. Keys are shown only once on creation.

python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.nova.ai/v1",
    api_key="nova-YOUR_API_KEY",
)