{"slug": "how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number", "title": "How to Use Chinese LLMs (Qwen, DeepSeek, GLM) Without a Chinese Phone Number", "summary": "A developer has documented methods for overseas developers to access Chinese LLMs such as Qwen, DeepSeek, and GLM without requiring a Chinese phone number. The most practical solution is using a gateway service like TokenMaster, which provides API access to these models by simply changing the base URL, bypassing the +86 phone verification requirement. The guide compares costs and reliability of various approaches, including virtual phone numbers and Alibaba Cloud International, concluding that gateway services offer the best balance of low cost and high reliability.", "body_md": "If you've tried signing up for any Chinese AI service, you've seen the same message:\n\nPlease enter your phone number (+86) to receive a verification code.\n\nThis 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.\n\nChina's major AI labs produce world-class models:\n\nBut every single one requires:\n\nServices like SMS-activate and 5sim offer temporary Chinese phone numbers for ~$1-2.\n\n**The problem:** Chinese providers have gotten aggressive about flagging virtual numbers. Your account gets banned within days. You lose any balance you've added.\n\n❌ **Not recommended** — too unreliable for production use.\n\nThe most practical solution is a gateway that handles the China-side complexity for you. These services:\n\n**What this means for you:**\n\n**Migration example (Python):**\n\n```\n# Before — can't access Chinese models at all\n# client = OpenAI(api_key=\"...\")  # Only works for OpenAI\n\n# After — full access to Chinese models\nclient = OpenAI(\n    base_url=\"https://api.tokenmaster.com/v1\",\n    api_key=\"tm-...\"\n)\nresponse = client.chat.completions.create(\n    model=\"deepseek-v4-pro\",\n    messages=[{\"role\": \"user\", \"content\": \"Hello!\"}]\n)\n```\n\nNo SDK changes. No VPN. No Chinese phone number. Just swap the base URL.\n\nSome providers like Alibaba Cloud's international portal offer English-language signup, but the model selection is limited and pricing is higher than domestic rates.\n\n**Qwen via Alibaba Cloud International:**\n\n**DeepSeek Direct:**\n\nAssuming 10M input + 2M output tokens per month:\n\n| Method | Monthly Cost | Setup Friction | Reliability |\n|---|---|---|---|\n| GPT-4o Direct | ~$38 | Low | High |\n| Chinese LLMs via Gateway | ~$7 | Low | High |\n| Virtual Phone Numbers | ~$5 + risk of losing account | Medium | Low |\n| Alibaba Cloud International | ~$15-20 | Medium | Medium |\n\nA good gateway will give you access to at least these models:\n\n| Model | Family | Cost (Input/1M) | Key Strength |\n|---|---|---|---|\n| DeepSeek V4 Flash | DeepSeek | $0.18 | Speed + low cost |\n| DeepSeek V4-Pro | DeepSeek | $0.50 | Coding + reasoning |\n| Qwen 3.7-Max | Qwen | $1.00 | Long context (256K) |\n| Qwen 3.5-Flash | Qwen | $0.30 | High throughput |\n| GLM-4.5 | GLM | $0.80 | Reasoning |\n| GLM-4-Flash | GLM | $0.20 | Cost-effective |\n\nWhen evaluating a gateway for Chinese LLM access:\n\nIf you want to try this today:\n\n`pip install openai`\n\n```\npip install openai\npython\nfrom openai import OpenAI\nclient = OpenAI(\n    base_url=\"https://api.tokenmaster.com/v1\",\n    api_key=\"your-key-here\"\n)\nresponse = client.chat.completions.create(\n    model=\"qwen-3.7-max\",\n    messages=[{\"role\": \"user\", \"content\": \"Write a Python function to sort a list\"}]\n)\nprint(response.choices[0].message.content)\n```\n\nThe +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.\n\n*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.*", "url": "https://wpnews.pro/news/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number", "canonical_source": "https://dev.to/zhouxia_qian_768284ca068e/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number-1nep", "published_at": "2026-06-24 09:32:56+00:00", "updated_at": "2026-06-24 09:43:50.834456+00:00", "lang": "en", "topics": ["large-language-models", "artificial-intelligence", "developer-tools", "ai-products", "ai-infrastructure"], "entities": ["Qwen", "DeepSeek", "GLM", "TokenMaster", "Alibaba Cloud", "OpenAI", "SMS-activate", "5sim"], "alternates": {"html": "https://wpnews.pro/news/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number", "markdown": "https://wpnews.pro/news/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number.md", "text": "https://wpnews.pro/news/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number.txt", "jsonld": "https://wpnews.pro/news/how-to-use-chinese-llms-qwen-deepseek-glm-without-a-chinese-phone-number.jsonld"}}