Alibaba
Synthorai 上的全部 Alibaba 模型:一个端点,实时价格。
19 个模型 · chat / tools / transcription / reasoning · 输入价低至 $0.05/M
为什么经 Synthorai 使用 Alibaba
- 自带密钥(BYOK)。 自带你的阿里云 DashScope 密钥,零加价,早期访问期间免费。
- 零提示词留存。 网关默认零提示词留存;上游适用阿里云自身的 API 数据政策。 详情 →
- 提示词缓存。 隐式上下文缓存自动生效;显式 cache_control 模式提供更深折扣(最小块 1,024 token,5 分钟 TTL、命中即重置)。各模型缓存读取价见价格表。 缓存读取低至 $0.022/M。
Alibaba 模型与价格
| 模型 | 输入 /M | 输出 /M | 缓存读取 /M | 上下文 |
|---|---|---|---|---|
| Qwen3.7 Max | $2.5 | $7.5 | $0.5 | 1M |
| Qwen3 Max | $1.2 | $6 | $0.359 | 256K |
| Qwen3.5 Plus | $0.4 | $2.4 | $0.115 | 1M |
| Qwen3.7 Plus | $0.4 | $1.6 | $0.08 | 1M |
| Qwen3.6 Flash | $0.25 | $1.5 | $0.05 | 256K |
| Qwen3 VL Plus | $0.2 | $1.6 | $0.143 | 256K |
| Qwen3.5 Flash | $0.1 | $0.4 | $0.029 | 1M |
| Qwen3 VL Flash | $0.05 | $0.4 | $0.022 | 256K |
| Fun-ASR | $0.0021/min | — | — | — |
| Fun-ASR Flash | $0.0021/min | — | — | — |
| Fun-ASR MTL | $0.0021/min | — | — | — |
| Fun-ASR Realtime | $0.002/min | — | — | — |
| Paraformer Realtime v2 | $0.002/min | — | — | — |
| qwen-image-2.0 | $0.035/img | — | — | — |
| qwen-image-2.0-pro | $0.075/img | — | — | — |
| Qwen3-ASR Flash | $0.0021/min | — | — | — |
| Qwen3-ASR Flash Realtime | $0.002/min | — | — | — |
| wan2.7-image | $0.03/img | — | — | — |
| wan2.7-image-pro | $0.075/img | — | — | — |
厂商牌价,无平台加价。各模型页价格实时刷新。 以下为官方 list 价。登录客户可在 /console/pricing 查看含工作空间折扣的实际价格。
30 秒用上 Alibaba 模型
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="qwen3.7-max",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "qwen3.7-max",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.7-max",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "qwen3.7-max",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("qwen3.7-max")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Alibaba
阿里的 Qwen 家族是生产环境中根植开源权重的最广产品线之一:Max/Plus/Turbo 聊天档、出色的多语言与中文表现、coder 变体和 Qwen-Image 生成线。在 Synthorai 上,整个 Qwen 产品线位于一个 OpenAI 兼容端点之后,各模型价格实时更新,无需阿里云账号。
常见问题
不订阅怎么拿到 Alibaba API key?
不需要 Alibaba 账号:注册 Synthorai,创建一把 API key,本页所有 Alibaba 模型都能通过 OpenAI 兼容端点调用,按量付费,无需订阅(标注「邀请测试」的模型还需申请通过)。
Alibaba API 什么价格?
按 token 计费的模型输入价低至 $0.05/M;每个模型的实时单价见上表,厂商牌价,无平台加价。
可以用自己的 Alibaba 密钥(BYOK)吗?
可以。自带你的阿里云 DashScope 密钥,零加价,早期访问期间免费。你的密钥存放在加密保管库中,使用它的请求按厂商牌价计费。
Alibaba 的 API 数据留存策略是什么?
网关默认零提示词留存;上游适用阿里云自身的 API 数据政策。