Routeway Logo
Back to Models
DeepSeek

DeepSeek V4 Pro

Available

Description

DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with a 1M-token context window, built for advanced reasoning, coding, long-horizon agent workflows, knowledge, math, and software engineering tasks.

At a Glance

Key pricing and model details available for this model.

Input price

$1.57

per 1M tokens

Output price

$3.13

per 1M tokens

Context window

1.0M

tokens

Hallucination rate

0%

Token Pricing

Token pricing normalized to per-million-token rates.

Input / 1M tokens

$1.57

Output / 1M tokens

$3.13

Cache Read / 1M tokens

$0.22

Token Pricing Details

Rates are shown per 1M tokens for easier comparison.

Input / 1M tokens$1.57
Input unit1M tokens
Output / 1M tokens$3.13
Output unit1M tokens
Cache Read / 1M tokens$0.22
Cache Read unit1M tokens

Feature Availability

Capabilities explicitly listed in the current payload.

LLM

Available

Yes

Vision

Not listed

No

Function calling

Available

Yes

Reasoning

Available

Yes

Supported Parameters

frequency_penalty
logit_bias
max_completion_tokens
presence_penalty
reasoning_effort
stop
temperature
top_p
tools
tool_choice

Category Radar

Aggregated from the benchmark values present for reasoning, code, math, and accuracy.

Benchmark Breakdown

Detailed benchmark results drawn from the current payload.

GPQA

reasoning

Graduate-level science questions designed to be difficult to shortcut.

88.8%

Reported score

HLE

reasoning

A very hard expert-level exam across a wide range of subjects.

35.9%

Reported score

SciCode

code

Coding tasks drawn from real scientific workflows.

50%

Reported score

IFBench

accuracy

Measures how precisely the model follows detailed instructions.

76.5%

Reported score

LCR

accuracy

Tests long-context reasoning over large documents and conversations.

66.3%

Reported score

Tau2

accuracy

Evaluates realistic agent behavior in tool-using support workflows.

96.2%

Reported score

Code Samples

Quick start with the Routeway API

import OpenAI from 'openai';

const openai = new OpenAI({
  baseURL: "https://api.routeway.ai/v1",
  apiKey: "<YOUR_API_KEY>",
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "deepseek-v4-pro",
    messages: [
      {
        role: "user",
        content: "Explain quantum computing in simple terms"
      }
    ]
  });

  console.log(completion.choices[0].message);
}

main();