GA
Global API
문서시작하기

5분 설정

Global API는 OpenAI와 호환됩니다. base URL만 변경하면 코드를 다시 작성할 필요가 없습니다.

1

API 키 받기

무료 계정에 가입하고 대시보드에서 API 키를 받으세요.

API 키 받기 →

Free 플랜으로 시작 — 신용카드 불필요.

2

모델 선택

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-chatPopular

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

코드 한 줄 변경

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)

유일한 변경 사항: OpenAI 클라이언트 초기화에 base_url을 추가하세요.

문서

Getting Started

API Reference

SDKs & Examples

Best Practices

API 참조

베이스 URL

https://global-apis.com/v1

인증

Authorization: Bearer YOUR_API_KEY

엔드포인트

POST /chat/completions

채팅 완성

POST /embeddings

텍스트 임베딩

GET /models

모델 목록 가져오기

헤더

Content-Type: application/jsonAuthorization: Bearer YOUR_API_KEY

자주 묻는 질문

정말 OpenAI API와 호환되나요?

네! Global API는 완전한 OpenAI 호환입니다. 코드에서 베이스 URL만 변경하면 됩니다.

어떤 모델을 사용할 수 있나요?

DeepSeek, Qwen, Kimi, GLM, Doubao, MiniMax, Hunyuan 등 180+ 모델을 지원합니다.

속도 제한에 걸리면 어떻게 되나요?

속도 제한은 플랜에 따라 다릅니다. Free: 30 req/min, Pro: 500 req/min, Business: 2000 req/min, Scale: 5000+ req/min.

기존 OpenAI API 키를 사용할 수 있나요?

아니요 — Global API는 자체 API 키를 사용합니다.

스트리밍을 지원하나요?

네! 모든 엔드포인트가 SSE 스트리밍을 지원합니다.

What about function calling?

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

시작해볼까요?

지금 바로 구축을 시작하세요. Free 플랜은 신용카드 불필요.

API 키 받기 →

© 2026 Global API. All rights reserved.