Practical getting-started guide

How to Use Ox Alpha (Free AI Model)

Use Ox Alpha, ZAI's GLM-5.3 Flash model, for coding, long-context analysis, and agentic workflows through an OpenAI-compatible API. This guide explains the Tokenra route and the compatible model identifiers you should verify before production use.

API guideModel IDs: stealth/ox-alpha / glm-5.3-flashReviewed 28 August 2026
01 / Start with the model

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?.

Use the identifier for your route. Tokenra's documented route uses 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.
02 / Build an integration

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

  1. Create or access a Tokenra account.
  2. Create an API key in the provider dashboard and verify that the route is available to your account.
  3. Store the key in a server-side environment variable such as TOKENRA_API_KEY.
  4. Never embed the key in browser JavaScript, static HTML, a client bundle, or a public repository.

Example: Python

PYTHON · TOKENRA ROUTE
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)
PYTHON · GLM-5.3-FLASH
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 · TOKENRA ROUTE
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 · GLM-5.3-FLASH
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.

03 / Access economics

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.

What to verify before relying on free access
CheckWhy it matters
Account eligibilitySome routes require an account, a verified email, or a provider-specific access tier.
Rate limitsRequests per minute, concurrency, and daily quotas determine whether a workflow can run reliably.
Context and outputThe advertised 1M context and 128K output are model-level characteristics; the provider may expose lower operational limits.
Billing termsConfirm whether the route is free, how usage is measured, and what happens after a quota or trial limit is reached.
Availability dateRecord 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.

04 / Common questions

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.

Ready to try a real request?

Start with the provider route, keep your key on the server, and validate the response.

Read API docs