One endpoint for both model markets
Use the same OpenAI-compatible request shape across China AI models and global providers. Switch models with the model parameter.
Use one base_url to access DeepSeek, Qwen, Kimi, GLM, OpenAI, Claude, Gemini, and more. AITransX gives developers unified API keys, model routing, usage billing, request logs, and failover for practical multi-model apps.
Start by replacing the SDK base_url, then choose a model ID such as deepseek-chat, qwen-max, kimi-k2, gpt-4o, or claude-3.5-sonnet.
from openai import OpenAI client = OpenAI( api_key="aitx-your-key", base_url="https://aitransx.com/v1", ) response = client.chat.completions.create( model="deepseek-chat", messages=[{"role": "user", "content": "Hello"}], )
Keep the SDK integration small while keeping model access, usage, cost, and privacy visible.
Use the same OpenAI-compatible request shape across China AI models and global providers. Switch models with the model parameter.
When an upstream route fails, AITransX can try the next healthy provider while your application keeps the same API surface.
Track requests, latency, token usage, and cost by key, model, and provider. Export logs when your team needs an audit trail.
Request metadata is logged for operations; prompts and responses are streamed through without being written to disk.
Start with free credit, then pay by usage. Dashboard balance and per-model spend make costs easier to understand.
See request status, latency, provider, model, token usage, cost, and request IDs from the dashboard.
Use DeepSeek, Qwen, Kimi, and GLM alongside OpenAI, Claude, Gemini, and other global models through one API.
Access DeepSeek API, Qwen API, Kimi API, GLM API and other China AI model routes through an OpenAI-compatible gateway.
Call OpenAI, Claude, Gemini, Mistral, Grok-style and other global model APIs through one familiar interface.
Use different models for different products or regions while keeping API keys, billing, request logs, and routing in one place.
No vendor migration project. No model-by-model SDK rewrite. Start with the OpenAI SDK pattern you already know.