🌍 Global English Version: This is the English-translated and globally adapted version of the proxy. Core logic belongs to the original author (ForgetMeAI), maintained and translated for the global open-source community by Atharvotech.
FreeDeepseekAPI starts a local API server/wrapper for DeepSeek Web Chat (chat.deepseek.com) and lets you seamlessly connect DeepSeek Web to Open WebUI, LiteLLM, Hermes, Claude Code, OpenAI SDK-style clients, and other OpenAI-compatible LLM tools.
The project works through your regular logged-in DeepSeek account in a dedicated Chrome profile. The local localhost server accepts API requests and then talks to DeepSeek Web on its own via the saved browser session.
⚠️ This is an experimental web-chat proxy for local LLM integration. DeepSeek can change its internal Web API without warning. For production use, the official paid DeepSeek API is more reliable.
- What this gives you
- Features
- Quick start
- Windows launch
- Linux / Chromium launch
- VPS / headless launch
- Rootless Podman
- Diagnostics / doctor
- Session reuse and chat reset
- Multi-account pool
- Console auth ideas
- Verifying it works
- Usage examples
- Models
- Endpoints
- Open WebUI
- Update login
- Project status
- Use DeepSeek Web as a local API endpoint.
- Connect DeepSeek to Open WebUI and other OpenAI-compatible clients.
- Get regular JSON responses or streaming SSE.
- Use reasoning models with separate
reasoning_content. - Work with the Anthropic Messages API shim for Claude Code / Anthropic SDK.
- Use the OpenAI Responses API shim for new OpenAI/Codex-style clients.
- Keep separate web sessions for different agents/users.
- OpenAI-compatible API:
POST /v1/chat/completions - Anthropic-compatible shim:
POST /v1/messages - OpenAI Responses shim:
POST /v1/responses - Streaming: SSE chunks and regular non-stream JSON responses
- Reasoning output: separate
reasoning_contentfor thinking models - Tool calling: parsing of OpenAI tools, Anthropic tools, and Responses function tools
- Model capabilities:
GET /v1/model-capabilitieswith alias → real web mode - Agent sessions: separate DeepSeek session per
user/ agent id - Session recovery: auto-reset of stale chains/sessions
- Zero dependencies: Node.js 18+, no npm dependencies
git clone https://github.com/atharvotech/FreeDeepseekAPI-EN.git
cd FreeDeepseekAPI-EN
npm run auth
npm startnpm run auth opens the authorization menu:
- select option
1; - log in to DeepSeek in a separate Chrome profile;
- send a short message like
ok; - return to the terminal and press Enter.
npm start shows the launch menu:
1— authorize / update DeepSeek login2— show models and statuses3— run proxy4— exit
For headless/CI launch without the menu:
NON_INTERACTIVE=1 npm start
# or
SKIP_ACCOUNT_MENU=1 npm startBy default the server listens on:
http://localhost:9655
By default the proxy is only accessible from this machine. To access it from the network, explicitly set the host and a separate proxy key:
HOST=0.0.0.0 PROXY_API_KEY='replace-with-a-long-random-value' npm startThen pass the key as Authorization: Bearer <key>. Without PROXY_API_KEY, non-health endpoints remain unauthenticated, so don't expose such an instance to the network.
Browser requests are allowed from loopback origins. If a UI is served from another address, add its exact origin separated by commas, e.g. PROXY_CORS_ORIGINS=https://ui.example.com,http://192.168.1.20:3000.
git clone https://github.com/atharvotech/FreeDeepseekAPI-EN.git
cd FreeDeepseekAPI-EN
npm run auth
npm startIf Chrome is installed in a non-standard location, explicitly set the path:
$env:CHROME_PATH="C:\Program Files\Google\Chrome\Application\chrome.exe"
npm run authIf Chrome is not found, npm run auth now prints ready-to-use instructions for Windows/macOS/Linux instead of a mysterious stack trace.
git clone https://github.com/atharvotech/FreeDeepseekAPI-EN.git
cd FreeDeepseekAPI-EN
CHROME_PATH=$(which chromium) npm run auth
npm startIf Chromium is named differently:
CHROME_PATH=$(which chromium-browser) npm run auth
# or
CHROME_PATH=$(which google-chrome) npm run authThe most reliable flow without Chrome on the server:
-
On a home PC with a GUI/Chrome:
npm run auth
-
Copy
deepseek-auth.jsonto the VPS:scp deepseek-auth.json user@your-vps:/opt/FreeDeepseekAPI/deepseek-auth.json
-
On the VPS, import/verify the file and set safe permissions:
cd /opt/FreeDeepseekAPI npm run auth:import -- --input ./deepseek-auth.json npm run doctor -- --offline -
Run the proxy without the interactive menu:
NON_INTERACTIVE=1 npm start
You can import not only a ready-made deepseek-auth.json, but also a browser cookie export:
DEEPSEEK_TOKEN="<token>" npm run auth:import -- --input ./cookies.json
⚠️ Important:deepseek-auth.jsonis access to your DeepSeek Web login. Do not commit it, do not publish it, store it with permissions0600.
The container is intended only for non-interactive proxy launch. Do the browser authorization on the host with npm run auth: auth scripts and deepseek-auth.json are not copied into the image.
Run Podman as a regular user, without sudo.
-
Build a local image:
podman build --tag localhost/free-deepseek-api:local --file Containerfile . -
Pass DeepSeek auth and a separate proxy key through Podman secrets:
podman secret create --replace free-deepseek-auth ./deepseek-auth.json
printf 'Proxy API key: ' IFS= read -r -s PROXY_API_KEY printf '\n' printf '%s' "$PROXY_API_KEY" | podman secret create --replace free-deepseek-proxy-key -
Use a long random key. The value stays in the
PROXY_API_KEYvariable of the current shell so you can test the API; it does not go into the image or the Podman command line. -
Run the container with minimal privileges:
podman run --detach \ --name free-deepseek-api \ --publish 127.0.0.1:9655:9655 \ --secret free-deepseek-auth,target=deepseek-auth.json,uid=1000,gid=1000,mode=0400 \ --secret free-deepseek-proxy-key,target=proxy-api-key,uid=1000,gid=1000,mode=0400 \ --read-only \ --cap-drop=ALL \ --security-opt=no-new-privileges \ localhost/free-deepseek-api:local
Inside the container,
NON_INTERACTIVE=1,HOST=0.0.0.0, and the paths to both secrets are pre-set.REQUIRE_PROXY_API_KEY=1will prevent the container from starting if the secret with the key is missing or empty. On the host the port is only published on127.0.0.1; don't remove that address without a separate network firewall/access policy. -
Check liveness, account readiness, and the protected endpoint:
podman healthcheck run free-deepseek-api curl --fail http://127.0.0.1:9655/readyz curl --fail \ -H "Authorization: Bearer $PROXY_API_KEY" \ http://127.0.0.1:9655/v1/modelsThe built-in healthcheck verifies the local
/health(whether the process is alive)./readyzadditionally returns503if no DeepSeek auth account is currently ready to serve requests. Container diagnostics:podman logs free-deepseek-api podman inspect --format '{{.State.Health.Status}}' free-deepseek-apiStop and remove the container together with the saved Podman secrets:
podman stop free-deepseek-api podman rm free-deepseek-api podman secret rm free-deepseek-auth free-deepseek-proxy-key unset PROXY_API_KEYWhen rotating auth or the proxy key, replace the corresponding secret and recreate the container so behavior doesn't depend on the Podman version.
npm run doctor
# without network requests to DeepSeek:
npm run doctor -- --offlinedoctor checks:
- whether
deepseek-auth.json/DEEPSEEK_AUTH_DIRis found; - whether the JSON is valid;
- whether
token,cookie,wasmUrlexist; - whether file permissions are safe on macOS/Linux (
0600); - in normal mode — whether the DeepSeek PoW endpoint is reachable.
If you see data.biz_data is null, fetch failed, 401/403/429, or Hermes/OpenCode doesn't see models — run npm run doctor first.
FreeDeepseekAPI doesn't create a new DeepSeek chat for every HTTP request unnecessarily. The logic is:
- one
x-agent-session,session, oruser→ one DeepSeek chat session; - if a session id already exists — the proxy reuses it and continues the chain via
parent_message_id; - auto-reset happens on TTL, a DeepSeek session error, or a too-long message chain;
- local history is kept as a short context so a new DeepSeek session can continue the conversation;
- long agent requests are limited to
DEEPSEEK_MAX_PROMPT_CHARS(default 80,000 chars) before sending: the task start, fresh tool results, and the tool adapter are preserved; - if the client already sent multi-turn history, the local recovery history is not added a second time;
- an empty response is retried at most
DEEPSEEK_MAX_RETRIEStimes (default 2), and on each retry the context is reduced.
Explicitly set an agent/session:
curl -X POST http://localhost:9655/v1/chat/completions \
-H "Content-Type: application/json" \
-H "x-agent-session: my-agent" \
-d '{"model":"deepseek-chat","messages":[{"role":"user","content":"Hi"}]}'View active sessions:
curl http://localhost:9655/v1/sessionsReset a single session:
curl -X POST "http://localhost:9655/reset-session?agent=my-agent"Reset all sessions:
curl -X POST "http://localhost:9655/reset-session?agent=all"Why chats still appear in DeepSeek Web: the proxy works through the internal Web Chat API, and DeepSeek stores the real chat sessions on its side. That is normal for a web proxy. The point of session reuse is to avoid spawning new chats unnecessarily and to reset cleanly only when the chain is stale/broken.
You can attach multiple auth files. The right model: sticky account per agent/session — the proxy does not switch accounts inside a live DeepSeek session. If an account gets 401/403/429 and goes into cooldown, the session is safely reset and a new request can move to another available account.
Option 1 — a directory with auth files:
mkdir -p accounts
cp deepseek-auth-main.json accounts/main.json
cp deepseek-auth-backup.json accounts/backup.json
chmod 600 accounts/*.json
DEEPSEEK_AUTH_DIR=./accounts NON_INTERACTIVE=1 npm startOption 2 — a file list:
DEEPSEEK_AUTH_PATH="./accounts/main.json,./accounts/backup.json" NON_INTERACTIVE=1 npm startHow the pool works:
- a new agent/session receives an available account round-robin;
- the chosen account is pinned to the session (
sticky); - on
401,403,429the account goes into cooldown; - if a session's sticky account is in cooldown, the old DeepSeek session is reset so it doesn't hammer a rate-limited/expired account;
- account status is visible in
/healthwithout paths to auth files and without file names; - auth files must be stored with
0600permissions.
Configure cooldown:
DEEPSEEK_ACCOUNT_COOLDOWN_MS=600000 npm startThe password flow from PR #3 can be implemented, but it's safer not to store the password and not to make it the default. A proper implementation:
npm run auth:consoleasks for email/phone and password via a hidden prompt.- The password is kept only in the process memory, never written to files/logs/history.
- The script repeats the Web login flow via
fetch/CDP: gets a captcha/verify challenge, gives the person a link/code, waits for confirmation. - After a successful login only a standard-format
deepseek-auth.jsonis saved. - If DeepSeek asks for captcha/2FA — the script honestly says "open the link, pass the check, press Enter" rather than trying to bypass protection.
- For VPS, the
auth:console --no-save-password --output deepseek-auth.jsonmode is better.
Minimal safe MVP: console auth only interactive, no env password. An acceptable automation variant: DEEPSEEK_EMAIL=... npm run auth:console, but the password is still entered via a hidden prompt.
curl http://localhost:9655/
curl http://localhost:9655/v1/models
curl http://localhost:9655/v1/model-capabilitiesIf everything is fine, /health returns the server status, the list of supported aliases, and config_ready: true.
curl -X POST http://localhost:9655/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hi! Answer in one sentence."}],
"stream": false
}'curl -X POST http://localhost:9655/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-reasoner",
"messages": [{"role": "user", "content": "Answer briefly: why is the sky blue?"}],
"stream": false
}'For reasoning models the API returns the chain of thought separately from the final answer:
- non-stream:
choices[0].message.reasoning_content - stream:
choices[0].delta.reasoning_content - usage:
usage.completion_tokens_details.reasoning_tokens
reasoning_tokens is an approximate estimate based on the extracted DeepSeek Web THINK text, because the web stream doesn't provide official per-reasoning token usage.
curl -X POST http://localhost:9655/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat-search",
"messages": [{"role": "user", "content": "Find a fresh fact about DeepSeek and answer briefly."}],
"stream": false
}'curl -N -X POST http://localhost:9655/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Write a short joke."}],
"stream": true
}'curl -X POST http://localhost:9655/v1/messages \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"max_tokens": 512,
"messages": [{"role": "user", "content": "Answer exactly OK"}],
"stream": false
}'For Claude Code you can point the backend directly:
export ANTHROPIC_BASE_URL="http://127.0.0.1:9655"
export ANTHROPIC_AUTH_TOKEN="dummy-key"
export CLAUDE_CODE_ENABLE_GATEWAY_MODEL_DISCOVERY=1
claude --model deepseek-chatcurl -X POST http://localhost:9655/v1/responses \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"input": "Answer exactly OK",
"stream": false
}'FreeDeepseekAPI accepts:
- OpenAI
tools; - Anthropic
tools; - Responses API function tools.
The proxy asks DeepSeek to return a strict JSON tool call, but also knows how to parse fallback formats:
TOOL_CALL:- fenced JSON with an explicit
tool_call,tool_calls, orfunction_callenvelope <tool_call>...</tool_call>- DeepSeek DSML (
<|DSML|tool_calls>...) and the Web variant<||DSML|| Tool Calls>
GET /v1/models returns only aliases that are currently verified and work through this proxy.
| Alias | Web mode | Reasoning | Web search | Comment |
|---|---|---|---|---|
deepseek-chat |
Fast / default |
no | no | base chat |
deepseek-v3 |
Fast / default |
no | no | compatibility alias |
deepseek-default |
Fast / default |
no | no | compatibility alias |
deepseek-reasoner |
Fast / default |
yes | no | thinking_enabled=true |
deepseek-r1 |
Fast / default |
yes | no | R1-compatible alias |
deepseek-chat-search |
Fast / default |
no | yes | web search |
deepseek-default-search |
Fast / default |
no | yes | web search alias |
deepseek-reasoner-search |
Fast / default |
yes | yes | reasoning + search |
deepseek-r1-search |
Fast / default |
yes | yes | R1-compatible + search |
deepseek-expert |
Expert / expert |
no | no | Expert mode |
deepseek-v4-pro |
Expert / expert |
yes | no | Expert + reasoning |
Full mapping:
curl http://localhost:9655/v1/model-capabilitiesPer the official DeepSeek V4 Preview page, deepseek-chat and deepseek-reasoner currently route to deepseek-v4-flash non-thinking/thinking. The chat.deepseek.com direct stream doesn't expose the exact checkpoint name (model: ""), so the proxy records both the web mode (default / Fast) and the current official routing (DeepSeek-V4-Flash).
The current DeepSeek Web remote config output shows these web modes:
default/ UIFast— works; supportsthinking_enabledandsearch_enabled.expert/ UIExpert— works through the current web contract (x-client-version=2.0.0) and supportsthinking_enabled./v1/modelsexposesdeepseek-expertwithout reasoning anddeepseek-v4-proas Expert + reasoning.vision/ UIRecognition— visible in the remote config, but the direct Web API currently returnsbackend_err_by_model(Vision is temporarily unavailable). Sodeepseek-visionis hidden from/v1/models.
Search for Expert is unavailable per the remote config, so deepseek-expert-search remains unsupported.
| Method | Path | Purpose |
|---|---|---|
GET |
/ or /health |
proxy status |
GET |
/v1/models |
list of working OpenAI-compatible aliases |
GET |
/v1/model-capabilities |
full mapping of aliases, real model, capabilities |
POST |
/v1/chat/completions |
OpenAI-compatible Chat Completions |
POST |
/v1/messages |
Anthropic Messages API shim |
POST |
/v1/responses |
OpenAI Responses API shim |
GET |
/v1/sessions |
active local agent sessions |
POST |
/reset-session?agent=<id> |
reset a single session |
POST |
/reset-session?agent=all |
reset all sessions |
Base URL for Open WebUI in Docker:
http://host.docker.internal:9655/v1
For local launch without Docker:
http://localhost:9655/v1
If PROXY_API_KEY is not set, you can use any API key. If the key is set, the client must pass exactly that one — the proxy checks the bearer token before granting access to models, sessions, and completions.
npm run auth
npm startIf DeepSeek starts returning 401, 403, or asks for a new PoW/session — re-run npm run auth and update the saved browser session.
Local authorization files must not be committed to GitHub:
deepseek-auth.json.chrome-profile-deepseek/.env
They are already added to .gitignore.
Syntax check of the project:
npm testLive smoke tests against a running local proxy:
BASE_URL=http://127.0.0.1:9655 MODEL=deepseek-chat npm run test:liveFreeDeepseekAPI-EN is an experimental web-chat proxy for local use and integrations. It depends on the current DeepSeek Web Chat contract, so when DeepSeek makes changes, the auth/session logic or model mapping may need updating.
If something stopped working:
- update the login via
npm run auth; - check
/v1/model-capabilities; - retry the request on a fresh session;
- if the problem persists — DeepSeek has probably changed its internal Web API.
Made with ❤️ in India | Atharvotech: Driven by logic. Powered by AI. Built for you.