CPEN RouterOpenAI-compatible routing with live price caps

Pick the intelligence tier and maximum price yourself. CPEN routes inside that ceiling.

Cheap, Controllable, Cost Efficient, Configurable
Singapore-hosted AI price router

Control intelligence and top price for every AI request.

CPEN gives developers one OpenAI-compatible API, real-time price checks, hard USD caps, provider-group status, and automatic route selection for extraction, cleanup, batch jobs, and mini-chat.

CPEN RouterConfigurable intelligence and spend caps

Live caps, provider-group health, and route aliases in one request path.

Live product console

A route is selected after intelligence, status, and your price ceiling are checked.

CPEN keeps the developer-facing surface stable while the provider group can change behind the alias to stay inside the quality level and maximum price you set.

Operational guardrails

Control the ceiling before the model choice

The product is optimized for teams that want to define acceptable intelligence, maximum price, fallback behavior, and batch throughput before dispatch.

$1signup credit
5%platform fee
4%data opt-in fee
SGSingapore primary region
No anonymous API trafficProvider group status before dispatchHard per-request USD capsRoute aliases for configurable intelligence tiersOpenAI-compatible chat path plus extraction and batch surfaces
Route catalog

Router catalog

Use stable CPEN aliases first. Pin provider groups later when you know exactly what intelligence level, price ceiling, uptime, region, or data policy you need.

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

Drop-in quickstart

Swap the base URL, keep the OpenAI-style request shape, and set per-request intelligence and USD routing caps.

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