AIAIGS
ModelsRankingsDocsFeaturesPricingUtilitiesQuick StartFAQ
中文Console

AIGS · 一站式 AI 服务平台

Making global top-tier AI affordable, stable and accessible for everyone.

Quick links

  • API Console
  • Service Status
  • Pricing

Contact us

  • Email: support@aigs.cc
  • WeChat: aigs-cc
  • Terms of Service
  • Disclaimer

© 2026 AIGS. All rights reserved. · AI-generated content is for reference only. Please comply with local laws.

Help Center

From zero to production — one-stop developer guide

Documentation

Getting Started

  • Quick Start

Integration

  • SDK Setup
  • Framework Guides

Account

  • Billing

Troubleshooting

  • Error Codes

Support

  • More resources

Documentation

Quick StartSDK SetupFramework GuidesBillingError CodesMore resources

Quick Start

Sign up & log in

Create an account to get free trial credits. No credit card required.

Create an API key

Open the console → Tokens → Create token to get an sk- key. Tokens support quota caps, expiry dates, model restrictions, and can be disabled or deleted anytime.

Point base_url to AIGS

Set base_url to the endpoint below and swap in your API key to call every model. Zero code changes to existing apps.

Endpoint (base_url): https://api.aigs.cc/v1

💡 The free model ox-alpha costs nothing and is unlimited — start with it to validate your integration.

SDK Setup

AIGS is fully OpenAI-compatible. Official SDKs work out of the box: install the openai library, set api_key to your AIGS key and point base_url to https://api.aigs.cc/v1. Streaming, Function Calling, Embeddings and Vision are supported exactly like the official API.

cURL

bash
curl https://api.aigs.cc/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer sk-xxxxxxxx" \ -d '{"model":"deepseek-v4-flash","messages":[{"role":"user","content":"hi"}],"stream":true}'

Python

python
from openai import OpenAI client = OpenAI(api_key="sk-xxxxxxxx", base_url="https://api.aigs.cc/v1") resp = client.chat.completions.create( model="deepseek-v4-flash", messages=[{"role": "user", "content": "hello"}], stream=True, ) for chunk in resp: print(chunk.choices[0].delta.content or "", end

Node.js

typescript
import OpenAI from "openai"; const client = new OpenAI({ apiKey: "sk-xxxxxxxx", baseURL: "https://api.aigs.cc/v1", }); const stream = await client.chat.completions.create({ model: "deepseek-v4-flash", messages: [{ role: "user", content: "hello" }], stream: true, }); chunk stream processstdoutchunkchoicesdeltacontent
Tip: Every parameter (model, messages, tools, max_tokens, temperature, …) stays identical to the official API — no adapter layer needed.

Framework Guides

Fill in these two fields in your app's "OpenAI-compatible" settings (apps without native OpenAI support can also connect via reverse proxy):

  • API endpoint: https://api.aigs.cc/v1 (some apps use https://api.aigs.cc)
  • API Key: your sk- key from the console

Verified apps: Dify, FastGPT, LobeChat, Cherry Studio, ChatBox, Cursor, Cline, Immersive Translate and more.

Billing

Usage-based billing

Pay per token with micro-yuan precision (¥0.000001). Every call is itemized in the console in real time.

Balance never expires

Credits stay valid forever — top up anytime, no minimums, pay only for what you use.

Transparent pricing

Listed prices are official vendor price × 1.15, always comparable. Live prices are shown in the console Model Hub.

Free model

ox-alpha costs nothing and is unlimited — perfect for debugging and low-cost workloads.

Member discounts

Member groups enjoy discounted model rates. Top-ups and balance live under "Top-up" in the console.

Error Codes

CodeMeaningWhat to do
401 UNAUTHORIZEDInvalid or expired tokenVerify the key exists and is not deleted, disabled or expired
402 INSUFFICIENT_QUOTAInsufficient balanceTop up in console or raise the token quota cap
400 INVALID_INPUTMalformed requestCheck the model name and messages format
404 MODEL_NOT_FOUNDModel not found or unlistedConfirm the model name and availability in the Model Hub list
429 RATE_LIMITEDRate limit hitSlow down requests, or upgrade your group / membership
503 MODEL_UNAVAILABLEUpstream temporarily downRetry shortly; backup channels switch automatically

More resources

  • FAQ: accounts, quotas, refunds and other common questions
  • Service status: live gateway availability and incident history
  • Contact support: reply within 24h on workdays

On this page

  • Sign up & log in
  • Create an API key
  • Point base_url to AIGS
  • cURL
  • Python
  • Node.js
  • Usage-based billing
  • Balance never expires
  • Transparent pricing
  • Free model
  • Member discounts
=
""
)
for
await
(
const
of
)
{
.
.
write
(
.
[
0
]
?.
?.
??
""
)
;
}