High-quality multilingual text embeddings for RAG, semantic search, clustering and retrieval.
| NovAI | OpenRouter | Access | |
|---|---|---|---|
| Input / 1M tokens | $0.11 | N/A | Official direct |
curl https://aiapi-pro.com/v1/embeddings -H "Authorization: Bearer $NOVAI_API_KEY" -H "Content-Type: application/json" -d '{
"model": "qwen3.7-text-embedding",
"input": "The quick brown fox jumps over the lazy dog"
}'
from openai import OpenAI
client = OpenAI(base_url="https://aiapi-pro.com/v1", api_key="YOUR_NOVAI_API_KEY")
resp = client.embeddings.create(model="qwen3.7-text-embedding", input="The quick brown fox jumps over the lazy dog")
print(resp.data[0].embedding[:5])
Standard OpenAI embeddings response format - just set base_url to https://aiapi-pro.com/v1 and use your NovAI API key. Full reference in the API docs.
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free