惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
小众软件
小众软件
B
Blog
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Use Chinese LLMs (Qwen, DeepSeek, GLM) Without a C...
Zhouxia Qian · 2026-06-24 · via DEV Community

Zhouxia Qian

How to Use Chinese LLMs Without a Chinese Phone Number

If you've tried signing up for any Chinese AI service, you've seen the same message:

Please enter your phone number (+86) to receive a verification code.

This single requirement blocks most overseas developers from accessing some of the best-performing and most cost-effective LLMs on the market. This guide covers every workaround I've found — from least to most practical.

The Problem

China's major AI labs produce world-class models:

  • DeepSeek — DeepSeek V4-Pro matches GPT-4o within 3-5% on coding benchmarks
  • Qwen (Alibaba) — Qwen 3.7-Max beats GPT-4o on long-context tasks (256K tokens)
  • GLM (ZhipuAI) — GLM-4.5 is competitive with Claude for reasoning tasks
  • Baichuan — Strong for Chinese-language generation

But every single one requires:

  1. A +86 Chinese phone number for registration
  2. Alipay or WeChat Pay for billing
  3. Chinese-language documentation

Method 1: Virtual Chinese Phone Numbers (Fragile)

Services like SMS-activate and 5sim offer temporary Chinese phone numbers for ~$1-2.

The problem: Chinese providers have gotten aggressive about flagging virtual numbers. Your account gets banned within days. You lose any balance you've added.

Not recommended — too unreliable for production use.

Method 2: Third-Party Gateway Services (Recommended)

The most practical solution is a gateway that handles the China-side complexity for you. These services:

  • Maintain their own Chinese accounts and infrastructure
  • Register with real Chinese business entities
  • Handle Alipay/WeChat billing on their end
  • Expose everything through a standard OpenAI-compatible API

What this means for you:

  • Sign up with email (no phone number needed)
  • Pay via Stripe or PayPal
  • Get a standard API key
  • Use the OpenAI Python/Node.js SDK as-is

Migration example (Python):

# Before — can't access Chinese models at all
# client = OpenAI(api_key="...")  # Only works for OpenAI

# After — full access to Chinese models
client = OpenAI(
    base_url="https://api.tokenmaster.com/v1",
    api_key="tm-..."
)
response = client.chat.completions.create(
    model="deepseek-v4-pro",
    messages=[{"role": "user", "content": "Hello!"}]
)

No SDK changes. No VPN. No Chinese phone number. Just swap the base URL.

Method 3: Direct Registration with Chinese Support

Some providers like Alibaba Cloud's international portal offer English-language signup, but the model selection is limited and pricing is higher than domestic rates.

Qwen via Alibaba Cloud International:

  • ✅ English signup available
  • ✅ Stripe payment
  • ❌ Limited model selection
  • ❌ 2-3x price markup vs domestic pricing

DeepSeek Direct:

  • ❌ No international portal
  • ❌ +86 phone required
  • ❌ Alipay only

Cost Comparison

Assuming 10M input + 2M output tokens per month:

Method Monthly Cost Setup Friction Reliability
GPT-4o Direct ~$38 Low High
Chinese LLMs via Gateway ~$7 Low High
Virtual Phone Numbers ~$5 + risk of losing account Medium Low
Alibaba Cloud International ~$15-20 Medium Medium

Available Models Through Gateways

A good gateway will give you access to at least these models:

Model Family Cost (Input/1M) Key Strength
DeepSeek V4 Flash DeepSeek $0.18 Speed + low cost
DeepSeek V4-Pro DeepSeek $0.50 Coding + reasoning
Qwen 3.7-Max Qwen $1.00 Long context (256K)
Qwen 3.5-Flash Qwen $0.30 High throughput
GLM-4.5 GLM $0.80 Reasoning
GLM-4-Flash GLM $0.20 Cost-effective

Things to Watch For

When evaluating a gateway for Chinese LLM access:

  1. Latency: Most gateways use edge caching to keep latency under 100ms. Test with your workload.
  2. English quality: Chinese models handle technical English well but can stumble on creative writing. Plan for a small GPT-4o fallback.
  3. Data handling: Check if the gateway logs or stores your prompts. Some offer zero-retention policies.
  4. Rate limits: Gateway rate limits are typically lower than direct API access. Fine for most side projects and small teams.

Quick Start

If you want to try this today:

  1. Sign up at a gateway like TokenMaster — email only, no phone
  2. Get your free $2 trial credit (no credit card)
  3. Install the OpenAI SDK: pip install openai
  4. Change your base URL and start using Chinese models
pip install openai

from openai import OpenAI
client = OpenAI(
    base_url="https://api.tokenmaster.com/v1",
    api_key="your-key-here"
)
response = client.chat.completions.create(
    model="qwen-3.7-max",
    messages=[{"role": "user", "content": "Write a Python function to sort a list"}]
)
print(response.choices[0].message.content)

The Bottom Line

The +86 phone requirement is frustrating, but it's no longer a hard blocker. Gateway services have matured to the point where accessing Chinese LLMs from overseas is as simple as changing a base URL. Given the quality improvements and cost advantages, it's worth exploring — especially if your API bill is growing.


Not affiliated with any service mentioned. Just a developer who spent way too long dealing with this problem and wants to save others the headache.