OpenAI-compatible gateway for Chinese models
ModelBridge API
Use DeepSeek and other Chinese model routes through one developer API with USD credits, virtual API keys, usage tracking, and clear token pricing.
What it solves
A developer bridge for Chinese model access.
The product is built for global developers and AI builders who want Chinese model coverage without juggling local accounts, local payment methods, or provider-specific billing dashboards.
One API
Change the base URL, API key, and model name while keeping OpenAI SDK semantics.
Virtual keys
Create and disable application keys from the dashboard without exposing upstream credentials.
Usage ledger
Track requests, tokens, charged amount, upstream estimate, latency, and margin.
Credit billing
Prepaid balances make cost exposure explicit before production checkout is enabled.
Quickstart
Switch an OpenAI client in three lines.
During MVP, use your configured backend endpoint. The hosted static site is the public product surface; the dashboard can point at a local or deployed API backend.
from openai import OpenAI
client = OpenAI(
api_key="sk-mb-your-virtual-key",
base_url="https://YOUR_API_BACKEND/v1"
)
response = client.chat.completions.create(
model="deepseek-chat",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)