A dedicated machine-translation model covering 90+ languages with domain-aware terminology and intervention support.
| NovAI | OpenRouter | Access | |
|---|---|---|---|
| Input / 1M tokens | $0.25 | N/A | Official direct |
| Output / 1M tokens | $0.75 | N/A | Official direct |
curl https://aiapi-pro.com/v1/chat/completions -H "Authorization: Bearer $NOVAI_API_KEY" -H "Content-Type: application/json" -d '{
"model": "qwen-mt-plus",
"messages": [{"role":"user","content":"Explain what this API does in one sentence."}]
}'
from openai import OpenAI
client = OpenAI(base_url="https://aiapi-pro.com/v1", api_key="YOUR_NOVAI_API_KEY")
resp = client.chat.completions.create(
model="qwen-mt-plus",
messages=[{"role":"user","content":"Explain what this API does in one sentence."}],
)
print(resp.choices[0].message.content)
Works with any OpenAI-compatible SDK - just set base_url to https://aiapi-pro.com/v1 and use your NovAI API key. Full reference in the API docs.