One-Time DeepSeek Access

DeepSeek Coding Plan

Choose between DeepSeek V4 Flash and Pro, understand the shared token limits, and copy the correct setup for your coding agent.

Available while stock lasts

One access Key, two DeepSeek V4 models

Pay once for 30 days of API access. Flash and Pro share the same exact token windows, and your encrypted Key, Base URL, model selector, and Agent configurations appear in Dashboard.

$39.90 · one-time

Delivery

One access key for both models

5-hour limit

25M Flash-equivalent tokens

Long-window limit

200M tokens / 7 days

Access term

30 days · one-time

1 · How to choose

Use Flash by default; pay the Pro multiplier only when it helps

Both routes share one token pool. Flash uses one plan token per raw input/output token. Pro uses ceil(tokens × 87 / 28) plan tokens, or about 3.11×, so a 25M five-hour pool represents about 8.05M raw Pro tokens if every request uses Pro.

DeepSeek V4 Flash

Default ·
deepseek-v4-flash

Use for everyday coding, repository exploration, chat, repeated tool calls, and higher-volume agent work.

DeepSeek V4 Pro

Hard tasks · ≈3.11×
deepseek-v4-pro

Switch to Pro for difficult reasoning, architecture decisions, deep reviews, and final-pass verification where quality matters more than token volume.

2 · Switch models

Keep the Key and Base URL; change only model

Start with deepseek-v4-flash. For a hard reasoning or review pass, replace the request's model value with deepseek-v4-pro. Switch back to Flash for routine tool loops so the shared token pool lasts longer.

// Default
model: "deepseek-v4-flash"
// Hard task
model: "deepseek-v4-pro"

3–4 · Protocol, test, then Agent

The Key and models are shared; the wire contracts are not

Select the exact protocol your client sends. Each option below has a different endpoint, request body, and response shape, followed by a matching API test and Agent configuration.

These examples already use the API endpoint provided with the Token Plan athttps://api.deepseekv4pro.com/v1. Replace only YOUR-TOKEN-PLAN-KEY with the access Key delivered in Dashboard. This product does not transfer a DeepSeek account or credentials from the DeepSeek console.

Protocol A · Responses

OpenAI Responses

Public route configured
Base URL
https://api.deepseekv4pro.com/v1
Exact endpoint
https://api.deepseekv4pro.com/v1/responses
Authentication
Authorization: Bearer <access key>

Request → response contract

input request → output items and Responses events

Compatible tools

Codex

Do not mix /v1/responses, /v1/chat/completions, and /v1/messages. The Key and model aliases are shared; the wire contracts are not.

API connection test

Expected marker: responses-ok

curl https://api.deepseekv4pro.com/v1/responses \
  -H "Authorization: Bearer YOUR-TOKEN-PLAN-KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash",
    "input": "Reply with: responses-ok",
    "max_output_tokens": 32
  }'

Agent configuration for this protocol

Codex

~/.codex/config.toml

Open configuration

Install

npm install -g @openai/codex

Launch

codex

OpenAI Responses only
model = "deepseek-v4-flash"
model_provider = "deepseek-token-plan"

[model_providers.deepseek-token-plan]
name = "DeepSeek Coding Plan"
base_url = "https://api.deepseekv4pro.com/v1"
env_key = "DEEPSEEK_TOKEN_PLAN_KEY"
wire_api = "responses"

# Put this in the shell that launches Codex:
# export DEEPSEEK_TOKEN_PLAN_KEY="YOUR-TOKEN-PLAN-KEY"

Switch model

Change only the top-level model value to deepseek-v4-flash or deepseek-v4-pro, then start a new Codex task.

Verify

Run codex with a small read-only prompt and confirm the request reaches the Responses route without an authentication or model error.

Requires an OpenAI Responses-compatible API route. The provided endpoint exposes /v1/responses for that purpose.

Official client documentation

Purchase strategy

From model choice to first Agent request

01 · Compare

Check Flash vs Pro consumption and confirm the 30-day term.

02 · Buy

Pay $39.90 once through Stripe for a 30-day access term while inventory remains.

03 · Receive

The encrypted access key and Base URL are assigned in Dashboard after payment.

04 · Connect

Choose the model and Agent tab, copy the generated config, then run the verification prompt.