DeepSeek V4 Flash vs GLM-5 Turbo
DeepSeek V4 Flash vs GLM-5 Turbo: Side-by-side API pricing and specs — call both with one OpenAI-compatible key on GetModel.
DeepSeek V4 Flash
DeepSeek · Text
DeepSeek V4 Flash, a fast and low-cost variant for high-throughput and everyday tasks. Served through getmodel's low-cost domestic-models group over an OpenAI-compatible endpoint.
View details →GLM-5 Turbo
Zhipu AI · Text
Zhipu GLM-5 Turbo, a fast and low-cost variant for bulk usage. Served through getmodel's low-cost domestic-models group over an OpenAI-compatible endpoint.
View details →Pricing comparison
| DeepSeek V4 Flash | GLM-5 Turbo | |
|---|---|---|
| Input / 1M tokens | $0.081 Cheaper | $0.405 |
| Output / 1M tokens | $0.162 Cheaper | $1.78 |
Specifications
| Provider | DeepSeek | Zhipu AI |
| Type | Text | Text |
| Endpoints | openai | openai |
How to call
One API key calls both models — just change the "model" field.
from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
# DeepSeek V4 Flash
client.chat.completions.create(model="deepseek-v4-flash", messages=[{"role":"user","content":"Hi"}])
# GLM-5 Turbo (same key, just change "model")
client.chat.completions.create(model="glm-5-turbo", messages=[{"role":"user","content":"Hi"}])