Why Use Claude

Claude is an AI model developed by Anthropic, excelling in coding, long document analysis, and complex reasoning. Many developers consider Claude's code quality to be the best among all AI models.

However, Claude isn't very friendly to mainland China users: the official website requires a VPN, and registration requires an overseas phone number. Here's how to get set up step by step.

Option 1: Register Directly on Claude's Website

The most legitimate approach, but also the highest barrier.

Prerequisites:

Registration steps:

  1. Open claude.ai, click Sign Up
  2. Register with email (Gmail recommended, domestic email also works)
  3. Verify phone number: needs a non-China phone number to receive verification code
  4. Once verified, you can start using it

Getting an overseas phone number:

Free tier has rate limits. Claude Pro is $20/month, Claude Max is $100/month.

Option 2: Use the API

If you're a developer who only needs API access:

  1. Open console.anthropic.com
  2. Register a developer account
  3. Create an API Key
  4. Top up and start calling

API registration also requires an overseas phone number but is slightly easier.

API Pricing:

Option 3: Third-Party Platforms

OpenRouter (openrouter.ai)

Poe (poe.com)

Option 4: Use Alternative Models

If you need Claude's capabilities but can't register:

NeedClaudeAlternative
Coding✅ BestDeepSeek V4 Pro (1/10 the price)
Long docs✅ 1000K contextGPT-5.5 (1050K) or MiMo-V2.5 Pro (1000K)
Complex reasoning✅ Opus 4.7GPT-5.5
Chinese abilityAverageDeepSeek (best Chinese)

Honestly, in 2026 Claude's advantage isn't as clear as it was in 2024. DeepSeek V4 Pro has nearly matched Claude in coding at 1/10 the price. For coding specifically, DeepSeek may be the more practical choice.

After Registration

Web version: Chat directly at claude.ai. Supports file uploads, image recognition, and code execution.

Claude Projects: Create projects, upload reference files, and have Claude answer based on your project materials. Great for team collaboration.

API integration: Use Anthropic's official SDK or OpenAI-compatible third-party libraries.

import anthropic

client = anthropic.Anthropic(api_key="your-key")
message = client.messages.create(
    model="claude-sonnet-4-6-20250514",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello"}]
)
print(message.content[0].text)

Notes