OpenAI-compatible API accessing China's most powerful AI models. Zero code changes required. Pay with USD credit card.
No credit card required for trial • 1M free tokens for new users
POWERED BY INDUSTRY LEADERS
Direct drop-in replacement. Just change the base URL. All SDKs work instantly.
Access GPT-4 class models at a fraction of the price. Pay only for what you use.
Pay with Stripe credit card in USD. No Chinese payment apps required.
SOC 2 compliant. 99.9% uptime SLA. Dedicated support for business.
Pay as you go. No monthly fees. Scale up or down anytime.
Access latest models from DeepSeek, Kimi, Zhipu and more.
All models support OpenAI-compatible format
| Model | Equivalent To | Context | Price / 1M tokens |
|---|---|---|---|
| DeepSeek-Pro | GPT-4 | 32K | $2.00 |
| Kimi-128K | GPT-4-32K | 128K | $3.00 |
| GLM-4 | Claude-3 | 128K | $1.50 |
| MiniMax-Text | GPT-3.5 | 32K | $0.15 |
| Doubao-Pro | GPT-4 | 32K | $2.50 |
Choose the plan that fits your needs. Scale anytime.
1M tokens included
10M tokens included
100M tokens included
Need custom volume? Contact us for enterprise pricing.
Just replace the base URL and your OpenAI SDK code works with our API instantly.
# Install
pip install openai
# Python SDK
from openai import OpenAI
client = OpenAI(
api_key="your_nexus_api_key",
base_url="https://api.nexusapi.com/v1"
)
# Use any model
response = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)