import requests r = requests.post( "https://api.aimlapi.com/v1/chat/completions", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "stealth/ox-alpha", "messages": [ { "role": "user", "content": "Hello!" } ] }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "stealth/ox-alpha", "messages": [ { "role": "user", "content": "Hello!" } ] }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"stealth/ox-alpha","messages":[{"role":"user","content":"Hello!"}]}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
This model has been identified as GLM-5.3-Flash and is billed at GLM-5.3-Flash rates, not free. Full routing goes live with today's deploy — see the GLM-5.3-Flash page for current pricing and specs.
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
Ox Alpha This page | Coding + agentic reasoning | |||
| Reasoning + agents | ||||
| Balanced coding + agents | ||||
| Long-context, multimodal & agentic workflows | ||||
| Reasoning + agents |
Ox Alpha has a 1,048,576 tokens context window and can return up to 131,072 tokens.
Ox Alpha takes image, text, video as input and returns text.
Use stealth/ox-alpha as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.
Ox Alpha became available on August 20, 2026.
Ox Alpha is priced at input $0.0975 / 1M tokens, output $0.325 / 1M tokens, cached input $0.0195 / 1M tokens.
Yes, Ox Alpha can stream responses as they are generated.
Yes, Ox Alpha accepts image input alongside text.
Ox Alpha supports function calling, reasoning, streaming, structured outputs, and vision.
Ox Alpha is accessed via https://api.aimlapi.com/v1/chat/completions using the model id stealth/ox-alpha.