HomeModels › GLM-5-Turbo
Zhipu AI · 128K Context

GLM-5-Turbo API

Zhipu GLM-5-Turbo is a latency-optimized GLM-5 variant tuned for high-throughput production traffic while keeping GLM-5 quality.

$1.08
Input / 1M tokens
$3.69
Output / 1M tokens
128K
Context window
Turbo
Latency
Sign Up - Get $2.00 Free Credit See All Pricing

Why use GLM-5-Turbo on NovAI?

  • Latency-optimized GLM-5 quality
  • High throughput for production
  • 128K context
  • Cheaper than OpenRouter
  • Zero platform fee

Best use cases

  • Real-time chat products
  • High-QPS API backends
  • Agentic tool calling
  • Content pipelines

Quick start

cURL

curl https://aiapi-pro.com/v1/chat/completions \
  -H "Authorization: Bearer $NOVAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "glm-5-turbo",
    "messages": [{"role":"user","content":"Write a Python function that returns the nth Fibonacci number."}]
  }'

Python (OpenAI SDK)

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="glm-5-turbo",
    messages=[{"role":"user","content":"Write a Python function that returns the nth Fibonacci number."}],
)
print(resp.choices[0].message.content)

Try GLM-5-Turbo today

Zero platform fee. Credits never expire. OpenAI-compatible API.

Sign Up Free