DeepSeek V4 Pro 0813

by DeepSeek

DeepSeek V4 Pro 0813 is the checkpoint that took V4 Pro out of preview on August 13, 2026, closing a preview period that had run since April. DeepSeek shipped it quietly, with no announcement post or changelog entry, and existing integrations picked it up in place, so anyone already calling deepseek-v4-pro moved onto this build without touching keys or endpoints. On DeepSeek's own harness the release scores 87.9 on Terminal-Bench 2.1 against 72.1 for the April preview, a jump no third-party evaluator has independently reproduced yet. The model keeps the 1 million token context window along with its reasoning and tool-calling behaviour, which points it at agentic coding, terminal-driven workflows and analysis over very long inputs.

Call DeepSeek V4 Pro 0813 on Opper with the OpenAI SDK. Sign up without a credit card. Get started

Key info

Input
Output
Features
Context window
1M
Max output
393K
Input price
$1.30 /1M$0.10 cache read
Output price
$2.60 /1M
  • EU residency available
  • US residency available
  • Zero data retention on pay-as-you-go
  • GDPR DPA available

Available routes

DeepSeek V4 Pro 0813 runs on 8 different routes through the Opper gateway. Compare residency, zero data retention and training posture at a glance, with full data-handling detail per route below.

ProviderRegionZero data retentionTrainingInputOutputCache read
USNo$1.30$2.60$0.10
ChinaYes$1.32$3.96$0.04
USNo$1.32$3.96$0.04
EUNo$1.14$3.41$0.23
MultiNo$1.32$3.96Input price
EUNo$1.32$3.96$0.04
USNo$1.32$3.96$0.35
USNo$1.32$3.96$0.04

Uptime and availability

DeepSeek V4 Pro 0813 runs on 4 independently monitored routes through the Opper gateway. A direct integration leaves you on one of them, the gateway serves whichever is healthy.

100%effective uptime, last 30 days
Averaged across these routes on their own, a single provider reached 99.47% over the same window.
Daily status through the gateway, which serves each request from whichever route is healthy.
4 monitored providers serve DeepSeek V4 Pro 0813.

Measured over the last 30 days from each provider's official status feed via StatusGator. Refreshed hourly. 4 further routes for this model are not on the board yet and are not counted above. See uptime for every provider Opper monitors.

Data handling per route

Each route hosting DeepSeek V4 Pro 0813 has its own privacy posture, residency, and GDPR terms. Postures are maintained by Opper with a last-verification timestamp.

DeepInfra β€” United StatesπŸ‡ΊπŸ‡Έ

Zero data retention: nothing is logged, held for abuse monitoring or used for training. No training on customer data. US; unknown; DPA available.

Zero data retention
Yes. Nothing is logged, held for abuse monitoring or used for training.
Training
No training on customer data.
Logging
None
Abuse monitoring
No classifier
GDPR DPA
DPA available
Transfer mechanism
unknown

DeepSeek β€” ChinaπŸ‡¨πŸ‡³

Content is retained: used for training by default. Trained on customer data by default. CN.

Zero data retention
Retained: used for training by default.
Training
Trained on customer data by default.
Logging
Other
Abuse monitoring
Always on, holds flagged content, stored in China, a person can view samples
Caching
Content cached for replay
GDPR DPA
No DPA
Transfer mechanism
Not applicable

DigitalOcean β€” United StatesπŸ‡ΊπŸ‡Έ

Zero data retention with abuse monitoring: nothing is logged or used for training; content flagged by abuse monitoring is held for review. No training on customer data. US; dpf sccs; DPA available.

Zero data retention
With abuse monitoring, flagged content held.
Training
No training on customer data.
Logging
None
Abuse monitoring
Always on, holds flagged content, stored in United States
Caching
Content cached for replay
Subprocessor access
No subprocessor reads content
GDPR DPA
DPA available
Transfer mechanism
dpf sccs

Melious β€” GermanyπŸ‡©πŸ‡ͺ

Zero data retention: nothing is logged, held for abuse monitoring or used for training. No training on customer data. EU; DPA available.

Zero data retention
Yes. Nothing is logged, held for abuse monitoring or used for training.
Training
No training on customer data.
Logging
None
Abuse monitoring
No classifier
Subprocessor access
Subprocessors may read content
GDPR DPA
DPA available
Transfer mechanism
Not applicable β€” data stays in EU

Nebius β€” Multi-region

Content is retained: provider logging. No training on customer data. GLOBAL; SCCs; DPA available.

Zero data retention
Retained: provider logging.
Training
No training on customer data.
Logging
Other
Abuse monitoring
No classifier
GDPR DPA
DPA available
Transfer mechanism
SCCs

Nextbit β€” SpainπŸ‡ͺπŸ‡Έ

Content is retained: provider logging, 90-day retention. No training on customer data. EU; SCCs; DPA available.

Zero data retention
Retained: provider logging, 90-day retention.
Training
No training on customer data.
Logging
Other (90-day retention)
Abuse monitoring
On by default, holds flagged content
Caching
Content cached for replay
GDPR DPA
DPA available
Transfer mechanism
SCCs

Novita β€” United StatesπŸ‡ΊπŸ‡Έ

Zero data retention: nothing is logged, held for abuse monitoring or used for training. No training on customer data. US; SCCs; DPA available.

Zero data retention
Yes. Nothing is logged, held for abuse monitoring or used for training.
Training
No training on customer data.
Logging
None
Abuse monitoring
On by default, keeps nothing
GDPR DPA
DPA available
Transfer mechanism
SCCs

Perplexity β€” United StatesπŸ‡ΊπŸ‡Έ

Zero data retention: nothing is logged, held for abuse monitoring or used for training. No training on customer data. US; SCCs; DPA available.

Zero data retention
Yes. Nothing is logged, held for abuse monitoring or used for training.
Training
No training on customer data.
Logging
None
Abuse monitoring
On by default, keeps nothing
GDPR DPA
DPA available
Transfer mechanism
SCCs

Get started

Call DeepSeek V4 Pro 0813 through the Opper gateway with one API key. Opper is drop-in compatible with the OpenAI, Anthropic and Google AI SDKs.

DeepSeek V4 Pro 0813 is a premium model on Opper. Sign up needs no credit card: you get an API key straight away and the free models work in the playground and the API. Add a card to use premium models, pay-as-you-go with no minimum.

Set it up with your agent

Copy this and paste it into a coding agent like Claude Code, Cursor or Codex and it'll wire up Opper for you.

Or call it directly

import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.OPPER_API_KEY,
baseURL: "https://api.opper.ai/v3/compat",
});
const completion = await client.chat.completions.create({
model: "deepseek-v4-pro-0813",
messages: [{ role: "user", content: "Hello" }],
});
console.log(completion.choices[0].message.content);

Compare DeepSeek V4 Pro 0813 with…

Side-by-side on privacy, EU hosting, pricing, and benchmarks.

Other models from DeepSeek

Start building with 700+ models

One API key. Every major provider. Up and running in minutes.

Get startedView Documentation