If you're a developer outside China, you've probably noticed that DeepSeek's API is incredibly cheap โ but there's a catch: DeepSeek only accepts Alipay and WeChat Pay. For most international developers, that means you simply can't use it.
This guide shows you how to access DeepSeek V4, DeepSeek R1, and DeepSeek V4 Flash using your credit card, through an OpenAI-compatible API.
DeepSeek offers some of the most capable language models available at a fraction of the cost of Western alternatives:
| Model | DeepSeek Price | OpenAI GPT-4o | Savings |
|---|---|---|---|
| Flagship | $0.27/M input | $2.50/M input | 90% |
| Flash (fast) | $0.001/M input | $0.15/M input | 99% |
| Reasoning (R1) | $0.50/M input | $10/M input (o1) | 95% |
But as of 2026, DeepSeek's official API platform only supports Alipay and WeChat Pay. If you don't have a Chinese bank account or these payment methods, you're locked out.
AI Token Hub is an OpenAI-compatible API gateway that provides access to DeepSeek (and other Chinese LLMs) with credit card payment. It works as a simple proxy โ you send requests in the OpenAI format, and AI Token Hub routes them to the appropriate Chinese provider.
๐ Free trial: Get 50,000 tokens free at /get-started โ no credit card required.
Visit /get-started and enter your email. You'll instantly receive a trial API key with 50,000 free tokens.
Replace the base URL in your OpenAI SDK code:
from openai import OpenAI
client = OpenAI(
base_url="https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1",
api_key="sk-trial-your-key-here"
)
response = client.chat.completions.create(
model="deepseek-v4", # or deepseek-r1, deepseek-v4-flash
messages=[{"role": "user", "content": "Explain quantum computing"}]
)
print(response.choices[0].message.content)
Available DeepSeek models:
| Model Name | Best For | Price (per 1M tokens) |
|---|---|---|
deepseek-v4 | General tasks, coding, analysis | $0.27 in / $1.10 out |
deepseek-r1 | Reasoning, math, complex logic | $0.50 in / $2.00 out |
deepseek-v4-flash | Fast, cheap, high-volume | $0.001 in / $0.001 out |
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model="deepseek-v4",
base_url="https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1",
api_key="sk-trial-your-key"
)
result = llm.invoke("What is DeepSeek?")
from llama_index.llms.openai import OpenAI
llm = OpenAI(
model="deepseek-v4",
api_base="https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1",
api_key="sk-trial-your-key"
)
curl https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-trial-your-key" \
-d '{
"model": "deepseek-v4",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Beyond DeepSeek, AI Token Hub also provides access to other top Chinese LLMs โ all with the same credit card payment:
One API key works for all 11 models. No need to register on multiple Chinese platforms.
Get 50,000 free tokens. No credit card required. OpenAI-compatible.
Get Your Free API Key โAI Token Hub is a third-party gateway that proxies requests to the official DeepSeek API. Your requests reach DeepSeek's infrastructure; we just handle the payment layer.
We add a small markup over DeepSeek's direct pricing to cover payment processing and infrastructure. The trade-off is that you can pay with a credit card instead of Alipay/WeChat.
All connections use HTTPS encryption. We do not store or log your prompt content. Requests are proxied directly to upstream providers.
Yes. The underlying models (DeepSeek, Qwen, GLM) are all open-source with commercial-friendly licenses. You can use the API for any purpose.