Claude API 빠른 시작 — 한국 시장용 2분 가이드
ClaudeStore를 통해 한국에서 Claude API를 2분 안에 연결하는 방법. 가격 선택, API 키 생성, cURL / Cursor / Claude Code 연결까지 포함.
Base URL: https://api3.claudestore.store. Anthropic endpoint: POST /v1/messages. OpenAI endpoint: POST /v1/chat/completions. Key format: sk-cs2-*. Recommended first pack: Test Pack $2.5 or Starter $45.
1. 계정 생성과 첫 결제
가장 빠른 시작 경로는 요금제 페이지에서 Test Pack 또는 Starter를 선택한 뒤 결제하고, 대시보드에서 sk-cs2-... 키를 생성하는 것입니다.
한국 시장용 진입에서는 Test Pack $2.5 → $5로 빠른 검증을 하고, 이후 Starter 또는 Pro로 확장하는 흐름이 가장 자연스럽습니다.
2. 첫 요청 보내기
Anthropic 호환 형식
cURL — Anthropic Messages APIbash
curl https://api3.claudestore.store/v1/messages \
-H "x-api-key: YOUR_SK_CS2_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
-d '{
"model": "claude-sonnet-4.6",
"max_tokens": 512,
"messages": [
{"role": "user", "content": "Explain this project architecture in Korean."}
]
}'OpenAI 호환 형식
cURL — OpenAI Chat Completionsbash
curl https://api3.claudestore.store/v1/chat/completions \
-H "Authorization: Bearer YOUR_SK_CS2_KEY" \
-H "content-type: application/json" \
-d '{
"model": "claude-sonnet-4.6",
"messages": [
{"role": "user", "content": "Say hello in Korean."}
]
}'3. Cursor / Claude Code 연결
한국 사용자가 가장 많이 묻는 두 경로는 Cursor와 Claude Code입니다.
- Cursor:
https://api3.claudestore.store/v1 - Claude Code:
https://api3.claudestore.store(without/v1)
Claude Code envbash
export ANTHROPIC_BASE_URL="https://api3.claudestore.store"
export ANTHROPIC_API_KEY="YOUR_SK_CS2_KEY"
export ANTHROPIC_MODEL="claude-sonnet-4.6"