Back to ModelsBack to Models
GLM-4.6V
Z AI23/ 57
Intelligence Score
Intelligence
23
#82 of 210 (top 39%)
Speed
27 tok/s
#141 of 148
Price
$0.45
per M tokens
#58 cheapest of 144
Context Window
128K
tokens
Latency: 2ms (#71)
Score Breakdown
Quality Score40%
Speed Score4%
Cost Score96%
Similar Models
Use This Model
Claude Code
claude --model glm-4-6v-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "glm-4-6v-reasoning",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("glm-4-6v-reasoning"),
prompt: "Hello",
});