OpenAI Compatible API with USD Payments
Built for developers who want reliable, affordable access to cutting-edge AI models.
Works with all OpenAI SDKs, minimal code changes
99.9% uptime with servers worldwide
Bank-level encryption and access controls
Access to latest Chinese AI models
One-line change to switch from OpenAI
Up to 90% cheaper than direct API costs
Access multiple providers through a single API endpoint.
| Model | Price | Context | 倍率 |
|---|---|---|---|
PopularMiniMax-M2.7 | 1.5 USD/M Token | 208K | 1X |
PopularQwen 3.5Plus | 1.5 USD/M Token | 208K | 1X |
PopularGLM-5 | 1.5 USD/M Token | 208K | 1X |
PopularKimi-k2.5 | 1.5 USD/M Token | 208K | 1X |
Top up by amount, auto-deducted by model usage
Need help? Contact support support@xouliwei.com
Just replace the base URL and your OpenAI SDK code works with our API instantly.
Sign in to the dashboard, create and copy your API key.
Set base_url to our API endpoint.
Start using any model right away.
# Install SDK
pip install openai
# Python Example
from openai import OpenAI
client = OpenAI(
api_key="your_nexus_api_key",
base_url="https://www.xouliwei.com/v1"
)
# Call any model
response = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)