What is Ox Alpha?
Ox Alpha is ZAI's GLM-5.3 Flash model, positioned for coding, multimodal work, and agentic workflows. Public descriptions associate it with a 1M-token context window and up to 128K output. Depending on the provider route, the same model may be addressed as stealth/ox-alpha on Tokenra or glm-5.3-flash on a ZAI-compatible route.
These model characteristics are useful planning signals, not a guarantee that every provider route exposes every modality, limit, or parameter. For the current integration boundary, see the Ox Alpha API reference. For a disclosure-first explanation of the model identity and evidence, read What is Ox Alpha?.
stealth/ox-alpha; ZAI-compatible routes may use glm-5.3-flash. Record the provider, route, date, limits, and request settings when you test it.Use Ox Alpha via API
The documented Tokenra route uses an OpenAI-compatible Chat Completions request. Use stealth/ox-alpha for the Tokenra route; if your ZAI-compatible provider exposes the same model under its native identifier, use glm-5.3-flash instead. The API is the better fit for a product, repeatable evaluation, or agent workflow because your server can own credentials, validation, retries, permissions, and audit logs.
Get your API key
- Create or access a Tokenra account.
- Create an API key in the provider dashboard and verify that the route is available to your account.
- Store the key in a server-side environment variable such as
TOKENRA_API_KEY. - Never embed the key in browser JavaScript, static HTML, a client bundle, or a public repository.
Example: Python
import os from openai import OpenAI client = OpenAI( base_url="https://tokenra.io/v1", api_key=os.environ["TOKENRA_API_KEY"], ) response = client.chat.completions.create( model="stealth/ox-alpha", messages=[{ "role": "user", "content": "Explain this function in two bullets.", }], ) print(response.choices[0].message.content)
import os from openai import OpenAI client = OpenAI( base_url="https://tokenra.io/v1", api_key=os.environ["TOKENRA_API_KEY"], ) response = client.chat.completions.create( model="glm-5.3-flash", messages=[{ "role": "user", "content": "Explain this function in two bullets.", }], ) print(response.choices[0].message.content)
Example: curl
curl https://tokenra.io/v1/chat/completions \ -H "Authorization: Bearer $TOKENRA_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "stealth/ox-alpha", "messages": [ {"role": "user", "content": "Summarize this request."} ] }'
curl https://tokenra.io/v1/chat/completions \ -H "Authorization: Bearer $TOKENRA_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "glm-5.3-flash", "messages": [ {"role": "user", "content": "Summarize this request."} ] }'
Start with the smallest request that proves authentication, routing, and response parsing. Then test prompt size, output limits, tool schemas, multimodal content, timeouts, and error responses against the live route. The complete field reference is in the Ox Alpha API documentation.
Free limits & pricing
Ox Alpha is currently listed as free by the provider. Free availability does not necessarily mean unlimited requests or unrestricted context. Rate limits, route availability, usable context, maximum output, and any overage terms can change independently.
| Check | Why it matters |
|---|---|
| Account eligibility | Some routes require an account, a verified email, or a provider-specific access tier. |
| Rate limits | Requests per minute, concurrency, and daily quotas determine whether a workflow can run reliably. |
| Context and output | The advertised 1M context and 128K output are model-level characteristics; the provider may expose lower operational limits. |
| Billing terms | Confirm whether the route is free, how usage is measured, and what happens after a quota or trial limit is reached. |
| Availability date | Record when you checked the listing. Provider availability and pricing are time-bound facts. |
For production planning, budget from observed completed requests and the provider's current commercial terms. Do not infer Tokenra pricing from a third-party benchmark's cost field. See the Ox Alpha benchmarks page for the distinction between a public benchmark record and a verified provider route.
FAQ
Is Ox Alpha open source?
This site does not have enough primary evidence to confirm that Ox Alpha source code, weights, or training process are open source. API access does not by itself mean that a model is open source. See what is documented about Ox Alpha.
Is Ox Alpha free?
Ox Alpha is currently listed as free by the provider. Verify the live provider listing for account requirements, limits, routing, and pricing before depending on a particular access tier.
Is Ox Alpha down right now?
Check the provider listing and the HTTP response from your request. Authentication, validation, rate-limit, and route errors can look similar to an outage, so inspect the status code and provider guidance before retrying.
How does Ox Alpha compare with GLM 5.3?
The GLM 5.3 vs Ox Alpha comparison explains its published scope. Compare the exact route, date, prompt, tools, budget, and benchmark setup rather than treating one score as a universal verdict.