GLM-4.5 Flash API

glm-4.5-flash

GLM-4.5 Flash is a language model from Zhipu, available through the GPUniq API under the identifier `glm-4.5-flash`. Pricing starts at $0.02 per 1M input tokens. It is reachable from the OpenAI-compatible endpoint, so any client that speaks the OpenAI Chat Completions API works by changing two settings: the base URL and the key.

Pricing

Every request is billed on two counters: the tokens you send (prompt, system message, conversation history, any attached images) and the tokens the model generates. Output is the pricier side on essentially every model, and reasoning tokens count as output even when you never see them. Prices below are per 1,000,000 tokens.

Billed forGPUniq
Inputper 1M tokens$0.02
Outputper 1M tokens$0.08

Billed from your GPUniq balance as you use it — no subscription, no monthly minimum, no per-seat fee. Prices refresh from the live catalog hourly.

Specifications

What the model accepts, what it returns, and the limits you will hit first.

API identifier
glm-4.5-flash

Pass this exact string as the "model" field of your request.

Type
Chat & text

Served by Zhipu.

Measured speed
≈18 tokens/sec

Rolling average of real GPUniq traffic. This sample comes from non-streaming requests, so it includes the wait before the first token.

Detailed specs are not published for this model. Everything above comes from the GPUniq catalog; we would rather show less than guess.

How to call it

Any OpenAI-compatible client works: change the base URL and the key, keep everything else.

Endpoint

POST /v1/openai/chat/completions

Base URL

https://api.gpuniq.com/v1/openai

curl https://api.gpuniq.com/v1/openai/chat/completions \
  -H "Authorization: Bearer YOUR_GPUNIQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "glm-4.5-flash",
    "messages": [{"role": "user", "content": "Explain rate limiting in one paragraph."}]
  }'

Create a key on /chat and send it as a bearer token. The same key works across every model in the catalog, so switching models means changing one string.

glm-4.5-flash — frequently asked

How much does glm-4.5-flash cost?

$0.02 per 1M input tokens and $0.08 per 1M output tokens on GPUniq. Billing is pay-as-you-go from your balance — no subscription and no monthly minimum.

How do I call glm-4.5-flash from my code?

Point any OpenAI-compatible client at https://api.gpuniq.com/v1/openai, use a GPUniq API key as the bearer token, and pass "glm-4.5-flash" as the model. The official OpenAI SDKs, LangChain, Cursor, Cline and OpenWebUI all work unmodified — only the base URL and the key change.

How fast is glm-4.5-flash?

Around 18 output tokens per second, measured from live traffic on GPUniq rather than quoted from a datasheet. This sample is derived from non-streaming requests, so it includes the wait before the first token.