Get started with AI Open Cloud — 50+ AI models, one API, zero markup.
Create a free account at aiopenc.com/auth. You'll get 200 free credits to start.
After signing in, go to Dashboard → Settings. Your API key will be displayed there.
curl https://api.aiopenc.com/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-plus",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Drop in replacement — just change the base URL and API key:
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.aiopenc.com/v1',
apiKey: 'YOUR_API_KEY',
});
const response = await client.chat.completions.create({
model: 'qwen-plus',
messages: [{ role: 'user', content: 'Hello!' }],
});
| Model | Provider | Category | Pricing |
|---|---|---|---|
| qwen-plus | DashScope | Text (Fast) | Platform |
| qwen-max | DashScope | Text (Advanced) | Platform |
| deepseek-chat | DeepSeek | Text | BYOK |
| deepseek-reasoner | DeepSeek | Reasoning | BYOK |
| gpt-4o | OpenAI | Text (Multimodal) | BYOK |
| gemini-2.5-pro | Text (Large Context) | BYOK | |
| claude-sonnet-4 | Anthropic | Text | BYOK |
| qwen-vl-max | DashScope | Vision | Platform |
Use your own API keys from OpenAI, DeepSeek, Google, or Anthropic. You only pay the provider's cost — zero markup from us.
Configure in Dashboard → Settings.
0% markup on all models. You pay exactly what the provider charges. Platform credits available for convenience. See Pricing for details.
GitHub: github.com/aiopenc
Discord: Join our Discord
Email: support@aiopenc.com