GA
Global API
DocsGet Started

5-Minute Setup

Global API is OpenAI-compatible. Just change your base URL — no code rewrites needed.

1

Get Your API Key

Sign up for a free account and get your API key from the dashboard.

Get API Key →

Start with our Free plan — no credit card required.

2

Choose Your Model

ga-economyNEW ✨

GA-Economy — Outperforms 95% of models at half the price

ga-standardNEW ✨

GA-Standard — Rivals top-tier models at a fraction of the cost

ga-expressNEW ✨

GA-Express — Sub-second intelligence for real-time apps

deepseek-v4-flashPopular

DeepSeek V4 Flash — Best overall value

deepseek-reasonerPopular

DeepSeek R1 — Advanced reasoning

deepseek-v4-pro

DeepSeek V4 Pro — Premium reasoning

Qwen/Qwen3.6-35B-A3BFlagship

Qwen 3.6 — Latest Alibaba flagship

Qwen/Qwen3.5-397B-A17B

Qwen 3.5 — 397B MoE, max intelligence

QwQ-32B

QwQ-32B — Qwen reasoning model

kimi-k2.5Flagship

Kimi K2.5 — Moonshot flagship

kimi-k2.6New

Kimi K2.6 — Latest Moonshot upgrade

THUDM/GLM-4-32B-0414Flagship

GLM-4 32B — Zhipu AI flagship

doubao-seed-2-0-pro-260215

Doubao Seed 2.0 — ByteDance premium

MiniMaxAI/MiniMax-M2.5

MiniMax-M2.5 — Ultra-long 1M context

Qwen/Qwen3-8BFree

Qwen3-8B — Free tier, general purpose

3

Change One Line of Code

Python
import openai
client = openai.OpenAI(
api_key="your-global-api-key",
base_url="https://global-apis.com/v1" # Just add this line!
)
# Everything else stays the same
response = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)

The only change: Add base_url to your OpenAI client initialization.

Documentation

Getting Started

API Reference

SDKs & Examples

Best Practices

API Reference

Base URL

https://global-apis.com/v1

Authentication

Authorization: Bearer YOUR_API_KEY

Endpoints

POST /chat/completions

Chat completions

POST /embeddings

Text embeddings

GET /models

List available models

Headers

Content-Type: application/jsonAuthorization: Bearer YOUR_API_KEY

FAQ

Is this really compatible with the OpenAI API?

Yes! Global API is fully OpenAI-compatible. Just change the base URL in your code — no other changes needed.

Which models are available?

We support 180+ models across DeepSeek, Qwen, Kimi, GLM, Doubao, MiniMax, Hunyuan and more. Start with 100 free credits on signup.

What happens if I hit rate limits?

Rate limits vary by plan. Free: 30 req/min, Pro: 500 req/min, Business: 2000 req/min, Scale: 5000+ req/min.

Can I use my existing OpenAI API key?

No — Global API uses its own API keys. However, the migration is simple: just change your base URL and add your new API key.

Do you support streaming?

Yes! All our endpoints support Server-Sent Events (SSE) streaming. Set stream: true in your request.

What about function calling?

DeepSeek supports function calling (tool use). Other features like image input vary by model.

Ready to Get Started?

Start building today. No credit card required for Free plan.

Get Your API Key →

© 2026 Global API. All rights reserved.