Documentation

Get started with AI Open Cloud — 50+ AI models, one API, zero markup.

Quick Start

1. Sign Up

Create a free account at aiopenc.com/auth. You'll get 200 free credits to start.

2. Get Your API Key

After signing in, go to Dashboard → Settings. Your API key will be displayed there.

3. Make Your First API Call

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!"}]
  }'

4. OpenAI SDK Compatible

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!' }],
});

Available Models

ModelProviderCategoryPricing
qwen-plusDashScopeText (Fast)Platform
qwen-maxDashScopeText (Advanced)Platform
deepseek-chatDeepSeekTextBYOK
deepseek-reasonerDeepSeekReasoningBYOK
gpt-4oOpenAIText (Multimodal)BYOK
gemini-2.5-proGoogleText (Large Context)BYOK
claude-sonnet-4AnthropicTextBYOK
qwen-vl-maxDashScopeVisionPlatform

BYOK: Bring Your Own Key

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.

Pricing

0% markup on all models. You pay exactly what the provider charges. Platform credits available for convenience. See Pricing for details.

Support

GitHub: github.com/aiopenc

Discord: Join our Discord

Email: support@aiopenc.com