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.

Operational guardrails

モデルの話題性よりコスト制御

CPENはランキングよりも価格上限、fallback、バッチ処理量を重視する開発者向けです。

$1登録クレジット
5%プラットフォーム手数料
4%データ提供opt-in時
SGシンガポール主要リージョン
匿名APIトラフィックなし実行前にプロバイダーグループ状態を確認リクエスト単位のUSD上限OpenAI互換チャット、抽出、バッチAPI
Route catalog

ルーターカタログ

まず安定したCPEN aliasを使い、必要に応じて価格・稼働率・データポリシーに合うプロバイダーグループを固定します。

RouteBest live modelProvider groupInputOutputTotal + feeCandidatesStatus
cpen/auto-chatChatgpt-5.4-miniNaapi / GPT$0.0206$0.1238$0.1516107available
cpen/auto-extractExtractgemini-2.5-flashYunwu / Gemini$0.0274$0.1094$0.143631available
cpen/auto-cheapBatchdeepseek-v3-miniDuckCoding / Value$0.0089$0.0351$0.046262available
cpen/pin-providerPolicyuser selectedPinned groupcap basedcap basedstrict0planned
Quickstart

クイックスタート

base URLを差し替え、OpenAI形式のリクエストを維持し、リクエストごとにUSD上限を指定します。

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"
  }
});
CPEN Router