GLM 5.3 Flash (CoreWeave) API

CoreWeave · serves glm-5.3-flash

Call it

Served via OpenRouter, pinned to CoreWeave — the provider these prices are resolved from. Set OPENROUTER_API_KEY. Provider page.

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "z-ai/glm-5.3-flash",
    "messages": [{"role": "user", "content": "Hello"}],
    "provider": {"only": ["CoreWeave"], "allow_fallbacks": false}
  }'
from openai import OpenAI  # pip install openai

client = OpenAI(
    base_url="https://openrouter.ai/api/v1",
    api_key="...",  # OPENROUTER_API_KEY
)
resp = client.chat.completions.create(
    model="z-ai/glm-5.3-flash",
    messages=[{"role": "user", "content": "Hello"}],
    extra_body={"provider": {"only": ["CoreWeave"], "allow_fallbacks": false}},
)
print(resp.choices[0].message.content)

Use this data

Raw JSON for this page: glm-5.3-flash.json. Free to reuse under CC BY 4.0 with attribution to apipriceindex.com.