GA
Global API
Get 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 Hobby plan — no credit card required.

2

Choose Your Model

deepseek-chatAvailable

DeepSeek V3.2 — General purpose, great value

deepseek-reasonerAvailable

DeepSeek R1 — Advanced reasoning and analysis

qwen-turboSoon

Qwen-Turbo — Coming soon

doubao-proSoon

Doubao Seed 2.0 — Coming soon

kimi-k2Soon

Kimi-k2 — Coming soon

3

Change One Line of Code

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-chat",
    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="https://global-apis.com/v1" to your OpenAI client initialization.

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. We support all OpenAI SDKs and can drop into existing projects.

Which models are available?

Currently available: DeepSeek V3.2 and DeepSeek R1. More models (Qwen, Doubao, Kimi) coming soon. See our pricing page for the latest.

What happens if I hit rate limits?

Rate limits vary by plan. Hobby: 60 req/min, Pro: 500 req/min, Business: 2000 req/min, Enterprise: custom. If you need more, contact us for enterprise pricing.

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. Your code logic stays the same.

Do you support streaming?

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

What about function calling and other advanced features?

DeepSeek V3.2 supports function calling (tool use). Other features like image input vary by model. Check our model docs for specific capability details.

Ready to Get Started?

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

Get Your API Key →