GLM-5V-Turbo API
GLM-5V-Turbo vision-language model by Zhipu AI. $1.08/1M input, $3.69/1M output, 128K context, OpenAI-compatible API via NovAI.
🚀 Get Started — $2.00 Free Credit💰 Pricing
| Direction | Per 1M tokens | Per 1K tokens |
|---|---|---|
| Input | $1.08 | $0.00108 |
| Output | $3.69 | $0.00369 |
Zero platform fee. You pay exactly what's listed. USDT (TRC20) supported.
✨ Key Features
- Multimodal (text + image) input
- 128K context window
- $1.08/1M input · $3.69/1M output
- OpenAI Chat Completions API
- 99.9% uptime — Hong Kong gateway
🎯 Best For
multimodal understanding, image captioning, OCR, vision QA, low-cost inference.
Zhipu's fast GLM-5-generation vision model, tuned for low-latency image understanding at scale.
🚀 Quickstart (Python)
from openai import OpenAI
client = OpenAI(
api_key="nvai-xxxxxxxx", # get free at aiapi-pro.com/register
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="glm-5v-turbo",
messages=[{"role": "user", "content": "Hello, who are you?"}]
)
print(resp.choices[0].message.content)
🧪 Quickstart (curl)
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer nvai-xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5v-turbo",
"messages": [{"role": "user", "content": "Hello"}]
}'
❓ FAQ
Is GLM-5V-Turbo cheaper on NovAI than on Zhipu AI (智谱) direct?
Same upstream pricing — zero platform fee. You pay $1.08/1M input & $3.69/1M output. No monthly subscription.
Do I need a Zhipu AI (智谱) account?
No. Sign up with email at NovAI, get $2.00 welcome credit, use any of our 15+ models via one API key.
Is GLM-5V-Turbo OpenAI-compatible?
Yes. Drop-in replacement — just change base_url and model.