CPEN RouterOpenAI-compatible routing with live price caps
シンガポール運用のAI価格ルーター
稼働中で最安のAI APIへ自動ルーティング。
CPENはOpenAI互換API、リアルタイム価格チェック、USDの上限価格、プロバイダーグループ単位の状態、抽出・整形・バッチ・ミニチャット向け自動ルーティングを提供します。
CPEN RouterOpenAI-compatible routing
Live caps, provider-group health, and route aliases in one request path.
Live product console
A route is selected after price, status, and caps are checked.
CPEN keeps the developer-facing surface stable while the best available provider group can change behind the alias.
live routeavailable
modelcpen/auto-extract
input cap$0.03
output cap$0.15
fee5%
Operational guardrails
モデルの話題性よりコスト制御
CPENはランキングよりも価格上限、fallback、バッチ処理量を重視する開発者向けです。
$1登録クレジット
5%プラットフォーム手数料
4%データ提供opt-in時
SGシンガポール主要リージョン
匿名APIトラフィックなし実行前にプロバイダーグループ状態を確認リクエスト単位のUSD上限OpenAI互換チャット、抽出、バッチAPI
Route catalog
ルーターカタログ
まず安定したCPEN aliasを使い、必要に応じて価格・稼働率・データポリシーに合うプロバイダーグループを固定します。
cpen/auto-extract
| Route | Best live model | Provider group | Input | Output | Total + fee | Candidates | Status |
|---|---|---|---|---|---|---|---|
| cpen/auto-chatChat | gpt-5.4-mini | Naapi / GPT | $0.0206 | $0.1238 | $0.1516 | 107 | available |
| cpen/auto-extractExtract | gemini-2.5-flash | Yunwu / Gemini | $0.0274 | $0.1094 | $0.1436 | 31 | available |
| cpen/auto-cheapBatch | deepseek-v3-mini | DuckCoding / Value | $0.0089 | $0.0351 | $0.0462 | 62 | available |
| cpen/pin-providerPolicy | user selected | Pinned group | cap based | cap based | strict | 0 | planned |
OpenAI SDKhttps://cpenrouter.space/v1
const client = new OpenAI({
baseURL: "https://cpenrouter.space/v1",
apiKey: process.env.CPEN_API_KEY
});
await client.chat.completions.create({
model: "cpen/auto-extract",
messages: [{ role: "user", content: row }],
routing: {
currency: "USD",
max_total_per_1m: "0.15"
}
});