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 資料政策。