Anthropic
Synthorai 上のすべての Anthropic モデル。1 つのエンドポイント、ライブ価格。
9 モデル · chat / code / tools / thinking · 入力 $1/M から
Synthorai 経由で Anthropic を使う理由
- BYOK(自前キーの持ち込み)。 自前の Anthropic キー(または AWS Bedrock / GCP Vertex の認証情報)を持ち込めます。上乗せゼロ、早期アクセス期間中は無料です。
- プロンプトのゼロ保持。 ゲートウェイではデフォルトでプロンプトをゼロ保持します。注意:Anthropic の Fable 5 ティアはすべてのクラウドで 30 日間の保持が必要です。 詳細 →
- プロンプトキャッシュ。 明示的な cache_control ブレークポイント方式です。キャッシュ読み取りは入力価格の 0.1 倍で課金され、キャッシュ書き込みには 1.25 倍(5 分 TTL)または 2 倍(1 時間 TTL)の割増が付き、モデルごとに最小プレフィックスサイズが適用されます。 キャッシュ読み取りは $0.1/M から。
Anthropic のモデルと料金
| モデル | 入力 /M | 出力 /M | キャッシュ読み取り /M | コンテキスト |
|---|---|---|---|---|
| Claude Fable 5招待制ベータ | $10 | $50 | $1 | 200K |
| Claude Opus 4.5 | $5 | $25 | $0.5 | 200K |
| Claude Opus 4.6 | $5 | $25 | $0.5 | 1M |
| Claude Opus 4.7 | $5 | $25 | $0.5 | 1M |
| Claude Opus 4.8 | $5 | $25 | $0.5 | 1M |
| Claude Sonnet 4.5 | $3 | $15 | $0.3 | 200K |
| Claude Sonnet 4.6 | $3 | $15 | $0.3 | 1M |
| Claude Sonnet 5 | $2 | $10 | $0.2 | 1M |
| Claude Haiku 4.5 | $1 | $5 | $0.1 | 200K |
ベンダー定価。プラットフォーム手数料なし。価格は各モデルページでライブ更新されます。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。
30 秒で Anthropic モデルを使う
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="claude-opus-4-5",
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: "claude-opus-4-5",
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": "claude-opus-4-5",
"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: "claude-opus-4-5",
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("claude-opus-4-5")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Anthropic について
Anthropic は、フロンティアの Fable/Mythos ティアから Opus、Sonnet、Haiku までの Claude モデルファミリーを開発しており、大容量のコンテキストウィンドウとともに、強力な推論・コーディング・エージェント的ツール使用で知られています。Synthorai ではすべての Claude モデルが 1 つの OpenAI 互換エンドポイントの背後にあり、base_url を差し替えるだけでコードはそのまま使えます。プロンプトキャッシュの価格もプロバイダー料率のまま引き渡されます。
よくある質問
サブスクリプションなしで Anthropic API キーを入手するには?
Anthropic アカウントは不要です。Synthorai に登録して API キーを 1 本作成すれば、このページのすべての Anthropic モデルを OpenAI 互換エンドポイントから利用できます。従量課金でサブスクリプションは不要です(「招待制ベータ」と表示のあるモデルは、別途申請の承認が必要です)。
Anthropic API の料金は?
トークン課金のモデルは入力 $1/M からです。各モデルのライブ単価は上の表のとおりです。ベンダー定価のままで、プラットフォーム手数料はありません。
自分の Anthropic キー(BYOK)を使えますか?
はい。自前の Anthropic キー(または AWS Bedrock / GCP Vertex の認証情報)を持ち込めます。上乗せゼロ、早期アクセス期間中は無料です。お客様のキーは暗号化されたボールトに保管され、そのキーを使うリクエストはベンダー定価で課金されます。
API 経由での Anthropic のデータ保持ポリシーは?
ゲートウェイではデフォルトでプロンプトをゼロ保持します。注意:Anthropic の Fable 5 ティアはすべてのクラウドで 30 日間の保持が必要です。