GLM-4.6V API
GLM-4.6V vision-language model by Zhipu AI. $0.10/1M input & output, 128K context, OpenAI-compatible API via NovAI.
🚀 Get Started — $0.50 Free Credit💰 Pricing
| Direction | Per 1M tokens | Per 1K tokens |
|---|---|---|
| Input | $0.10 | $0.00010 |
| Output | $0.10 | $0.00010 |
Zero platform fee. You pay exactly what's listed. PayPal & USDT supported.
✨ Key Features
- Multimodal (text + image) input
- 128K context window
- Flat $0.10 per 1M tokens (input & 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 cost-efficient vision-language model, ideal for production image-understanding workloads.
🚀 Quickstart (Python)
from openai import OpenAI
client = OpenAI(
api_key="sk-novai-xxxxxxxx", # get free at aiapi-pro.com/register
base_url="https://aiapi-pro.com/v1"
)
resp = client.chat.completions.create(
model="glm-4.6v",
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 sk-novai-xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-4.6v",
"messages": [{"role": "user", "content": "Hello"}]
}'
❓ FAQ
Is GLM-4.6V cheaper on NovAI than on Zhipu AI (智谱) direct?
Same upstream pricing — zero platform fee. You pay $0.10/1M input & $0.10/1M output. No monthly subscription.
Do I need a Zhipu AI (智谱) account?
No. Sign up with email at NovAI, get $0.50 welcome credit, use any of our 15+ models via one API key.
Is GLM-4.6V OpenAI-compatible?
Yes. Drop-in replacement — just change base_url and model.