AI Models
Qwen 3.5 122B
Alibaba's mid-tier MoE model. 122B parameters with 10B active — excellent balance of quality and speed.
POST
$0.01/call/v1/ai/chatOverview
Alibaba's mid-tier MoE model. 122B parameters with 10B active — excellent balance of quality and speed.
| Property | Value |
|---|---|
| Model ID | qwen/qwen3.5-122b-a10b |
| Context Window | 262,144 tokens |
| Max Output | 8,192 tokens |
| Input Price | $0.26 / 1M tokens |
| Output Price | $2.08 / 1M tokens |
Usage
const res = await fetch('https://api.yepapi.com/v1/ai/chat', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'qwen/qwen3.5-122b-a10b',
messages: [{ role: 'user', content: 'Write a TypeScript function that deep-merges two objects recursively.' }],
}),
});
const { data } = await res.json();
console.log(data.message.content);curl -X POST https://api.yepapi.com/v1/ai/chat \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "qwen/qwen3.5-122b-a10b", "messages": [{"role": "user", "content": "Write a TypeScript function that deep-merges two objects recursively."}]}'Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
model | string | Yes | Model ID (e.g. qwen/qwen3.5-122b-a10b) | — |
messages | Message[] | Yes | Array of { role, content } objects | — |
maxTokens | number | No | Maximum tokens in the response | Model default |
temperature | number | No | Sampling temperature (0.0–2.0) | 1.0 |
topP | number | No | Nucleus sampling threshold | 1.0 |
frequencyPenalty | number | No | Penalize repeated tokens | 0 |
presencePenalty | number | No | Penalize tokens already present | 0 |
stream | boolean | No | Enable SSE streaming | false |
Info
All AI models use the /v1/ai/chat endpoint. Specify the model with the model field.
Response
{
"ok": true,
"data": {
"model": "qwen/qwen3.5-122b-a10b",
"message": {
"role": "assistant",
"content": "function deepMerge<T extends Record<string, any>>(target: T, source: Partial<T>): T {\n for (const key of Object.keys(source)) {\n if (source[key] && typeof source[key] === 'object' && !Array.isArray(source[key])) {\n target[key] = deepMerge(target[key] || {}, source[key]);\n } else {\n target[key] = source[key];\n }\n }\n return target;\n}"
},
"usage": {
"promptTokens": 17,
"completionTokens": 94,
"totalTokens": 111
}
}
}Streaming
Set "stream": true to receive Server-Sent Events. Each chunk contains a delta object:
data: {"delta":{"content":"function"},"model":"qwen/qwen3.5-122b-a10b","index":0}
data: [DONE]Under the Hood
We handle auth, billing, and response normalization — you just send messages.