Introducing Yunxin
Yunxin is a unified AI API gateway that provides OpenAI-compatible access to 24+ model providers including OpenAI, Anthropic, Google, DeepSeek, and more.

Today we're announcing Yunxin β a unified AI API gateway that gives you OpenAI-compatible access to models from OpenAI, Anthropic, Google, DeepSeek, and 20+ other providers.
The Problem
Building with multiple AI providers means dealing with:
- Different SDKs β Each provider has their own client library
- Different APIs β Message formats, streaming implementations, and error handling vary
- Multiple dashboards β Tracking usage across providers is fragmented
- Vendor lock-in β Switching models requires code changes
Our Solution
Yunxin provides a single OpenAI-compatible API endpoint. Use your existing OpenAI SDK β just change the base URL:
from openai import OpenAI
client = OpenAI(
base_url="https://api.yuhuanstudio.com/v1",
api_key="your-api-key"
)
# Use any supported model
response = client.chat.completions.create(
model="model-id", # Any model from any provider
messages=[{"role": "user", "content": "Hello!"}]
)No new SDKs. No code refactoring when switching models.
Supported Providers
Yunxin integrates directly with 24+ AI providers:
Major Providers:
- OpenAI β Chat, vision, embeddings, image generation, audio
- Anthropic β Claude with Extended Thinking, Computer Use
- Google β Gemini with long context and multimodal
- DeepSeek β Reasoning models with visible thinking
- xAI β Grok models
- Mistral β Open-source and commercial models
Chinese Providers:
- Alibaba (Tongyi) β Qwen models
- Zhipu AI β GLM models
- Moonshot β Kimi models
- MiniMax β Multimodal generation
- ModelScope β ModelScope models
Local & Open Source:
- Ollama β Local model serving
- LM Studio β Desktop inference
- vLLM β High-throughput serving
- Hugging Face β Serverless inference
And more: Azure, Cloudflare, Groq, NVIDIA NIM, OpenRouter, Volcengine, Z.AI
Key Features
OpenAI Compatibility
Yunxin implements the full OpenAI API surface:
- Chat Completions API
- Streaming (SSE)
- Function Calling
- Vision (image understanding)
- Embeddings
- Batch API
- Realtime API
- Responses API
Reasoning Models
First-class support for thinking/reasoning models with visible reasoning content. Access the thinking process via reasoning_content in responses.
Provider Architecture
Each provider has an independent adapter:
- 100% API fidelity β All provider-specific features work
- Optimal format β We use each provider's best API format
- Independent updates β New features added without affecting others
Unified Management
- One dashboard β All usage across all providers
- One bill β Simplified billing and invoicing
- Budget controls β Set limits and alerts
- Analytics β Track usage by model, API key, or project
Getting Started
1. Sign Up
Create an account at api.yuhuanstudio.com. New accounts receive starter credits.
2. Get an API Key
Navigate to Dashboard β API Keys β Create API Key
3. Make Your First Request
curl https://api.yuhuanstudio.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "model-id",
"messages": [{"role": "user", "content": "Hello!"}]
}'Available Models
Models and pricing are synced automatically from each provider. Use the Models API to query available models:
# List all models
curl https://api.yuhuanstudio.com/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
# Filter by provider
curl https://api.yuhuanstudio.com/v1/models?provider=anthropic \
-H "Authorization: Bearer YOUR_API_KEY"
# Filter by capability
curl https://api.yuhuanstudio.com/v1/models?capability=thinking \
-H "Authorization: Bearer YOUR_API_KEY"Check the Models dashboard for current availability and pricing.
Learn about the Models API β
Pricing
Yunxin uses pay-as-you-go pricing based on actual usage:
- Pricing is transparent β based on upstream costs plus a service margin
- View pricing for each model in the Models dashboard
- Set budget limits and alerts in Settings β Billing
What's Next
We're actively developing:
- Smart routing β Automatically select optimal models
- Response caching β Reduce costs for repeated requests
- Enhanced analytics β Deeper cost and performance insights
Start Building
Yunxin is available now. Sign up and start building with any AI model through a single API.
Questions? Check out our documentation or reach out at [email protected].