Home › Blog › DeepSeek API Pricing
In August 2026 DeepSeek replaced flat pricing with a peak/off-peak model — peak-hour input tripled to ¥9 per 1M tokens. Here's the full comparison and how Bridge keeps DeepSeek V4 Pro affordable around the clock.
Alongside the V4-Pro-0813 release, DeepSeek introduced time-of-day pricing. On weekdays, peak hours — 9:00–12:00 and 14:00–18:00 Beijing time — cost double. Weekends are billed entirely off-peak. This replaced the flat ¥3 input / ¥6 output pricing announced in May 2026.
| DeepSeek V4-Pro (official, per 1M tokens) | Peak | Off-peak |
|---|---|---|
| Input (cache miss) | ¥9.0 (≈$1.27) | ¥4.5 (≈$0.63) |
| Input (cache hit) | ¥0.30 (≈$0.04) | ¥0.15 (≈$0.02) |
| Output | ¥27.0 (≈$3.80) | ¥13.5 (≈$1.90) |
| DeepSeek V4 Pro via Bridge (per 1M tokens) | Price | vs official peak |
|---|---|---|
| Input | $0.25 | ~80% cheaper |
| Output | $0.65 | ~83% cheaper |
| Input (cache hit) | $0.025 | ~40% cheaper |
Bridge prices are flat — no peak hours to schedule around — and come from a live price table you can audit on the models page. V4 Flash is available for high-volume customers at $0.12/$0.32.
DeepSeek's context caching charges cache-hit input at a fraction of the miss price. On Bridge the hit price is $0.025 per 1M tokens — a 10x discount over the miss price. Long multi-turn conversations and agent loops with stable system prompts see the biggest savings; Bridge meters cached tokens automatically and shows them on every request receipt.
# Python (openai SDK) — change base_url and api_key, keep everything else
from openai import OpenAI
client = OpenAI(
base_url="https://bridge.computeindex.net/v1",
api_key="sk-bridge-YOUR_KEY",
)
completion = client.chat.completions.create(
model="deepseek-v4-pro",
messages=[{"role": "user", "content": "Explain peak/off-peak pricing."}],
)
print(completion.choices[0].message.content)
Is DeepSeek V4 Pro on Bridge the same model as official? Yes — same model id family, served through Bridge's OpenAI-compatible endpoint with per-token metering and cached-input billing.
Does Bridge have peak pricing? No. Prices are flat and listed on the live price table. If costs change, the price table changes — you always see current pricing before you call.
Which DeepSeek models are available? DeepSeek V4 Pro (flagship) and V4 Flash (high-volume tier).
Get $1 free credit → try DeepSeek V4 Pro