DeepSeek V4 API Access

Get instant access to DeepSeek V4 — the most capable Chinese coding model — through a single OpenAI-compatible endpoint. No Chinese phone number needed.

$0.28 /M input tokens

94% cheaper than GPT-4o · 128K context · OpenAI SDK compatible

Free trial — no credit card required

Get API Key →

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://eaf9553505eeb8f5-115-190-107-107.serveousercontent.com/v1",
    api_key="YOUR_KEY"  # Get free key above
)

response = client.chat.completions.create(
    model="deepseek-v4",  # Just change model name
    messages=[
        {"role": "system", "content": "You are a helpful coding assistant."},
        {"role": "user", "content": "Write a Python function to merge two sorted lists."}
    ]
)
print(response.choices[0].message.content)

DeepSeek V4 Specs

PropertyValue
Model IDdeepseek-v4
Context Window128K tokens
Input Price$0.28 per million tokens
Output Price$0.42 per million tokens
StrengthsCoding, math, reasoning, multilingual
API FormatOpenAI-compatible (chat/completions)
Streaming✅ Supported

vs Other Models

ModelInput $/MOutput $/MCoding Score
DeepSeek V4$0.28$0.42⭐⭐⭐⭐⭐
GPT-4o$5.00$15.00⭐⭐⭐⭐⭐
Claude Sonnet 4$3.00$15.00⭐⭐⭐⭐⭐
DeepSeek V3$0.14$0.28⭐⭐⭐⭐
Gemini 2.5 Pro$1.25$10.00⭐⭐⭐⭐

Also Available

All through the same endpoint. One API key, all models.

← AI Token Hub | Guides | GitHub