DeepSeek AIDeepSeek (深度求索)
Global efficiency frontier. 5,000,000 free tokens upon registration for DeepSeek V3 and R1 reasoning models.
Core Free Tier
500 万 Tokens (或 10 元代金券)限时赠送
注册发放 500 万 Tokens 免费体验额度,全面支持 DeepSeek V3 与 R1 深度推理。
Reset Cycle: 一次性
Eligibility & Verification Requirements
Phone VerificationNo Phone Needed
Credit CardNo Card Needed
Network / RegionGlobal Direct
Concurrency RateStandard Tier
10-Second Drop-in Integration Code (OpenAI Compatible)
curl https://api.deepseek.com/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" -d '{
"model": "deepseek-chat",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'from openai import OpenAI
client = OpenAI(
base_url="https://api.deepseek.com/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="deepseek-chat",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.deepseek.com/v1",
apiKey: "YOUR_API_KEY",
});
const response = await client.chat.completions.create({
model: "deepseek-chat",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);Gotchas & Risk Precautions
- 额度有效期通常为 30 天。
