Back to modelsBuy Plan
Z.ai
GLM-5.3-Flash
GLM-5.3的轻量高速版本,200K上下文,支持图片/视频/文件/文本多模态输入。
Quick Stats
Context
1000K
Max Output
—
Provider
Z.ai
Specs
1
Modalities
in textin imagein videoin fileout text
Specs & Platform Price (per 1M tokens)
Quality
Input $0.117647Output $0.411765Cache read $0.033824
Recommended Plan
GLM-5.3-Flash Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
z-ai/glm-5.3-flashcURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "z-ai/glm-5.3-flash",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="z-ai/glm-5.3-flash",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.