๐ Self-hosted TikTok & Douyin scraper and no-watermark video downloader โ async REST API, MCP server, CLI and web console for posts, profiles, comments and playlists. Self-healing identity pool, PostgreSQL archive, one docker compose up. ๆ้ณใTikTok ๆฐๆฎ้้ไธๆ ๆฐดๅฐ่ง้ขไธ่ฝฝ API๏ผ่ชๆ็ฎก๏ผๆฏๆ MCP ่ฐ็จไธ Docker ไธ้ฎ้จ็ฝฒใ
20,134
stars
210
commits
Python
primary language
Sep 15, 2026
updated
๐ A self-hosted data API for Douyin and TikTok. One docker compose up, an identity pool that maintains itself, and a REST API, MCP server and web console on top.
Open source, free, and it runs on your own machine โ no signup, no quota, nobody else in the path. It fetches posts, authors, comments and search, downloads video and image albums without a watermark (it picks the clean stream the platform already publishes rather than stripping anything), and keeps what it collects in your own PostgreSQL.
These sponsors paid to be here, and Douyin_TikTok_Download_API stays free and open because of it. To sponsor the project, see my GitHub Sponsors page.
Your Ultimate Social Media Data & API Marketplace
Professional data solutions for Douyin, Xiaohongshu, TikTok, Instagram, YouTube,
Twitter, and more.
Real-time Data | Flexible APIs | Seamless Integration | Competitive Pricing with Discounts
Buy and sell custom APIs, services, and social media solutions on the
TikHub.io Marketplace, alongside developers, businesses and content creators.
Trusted by leading global influencer marketing and social media intelligence platforms
โ Visit TikHub.io ย ยทย API docs
Somewhere to put what you work out. This project exists because people wrote down how a signature was built; the forum is for the next round of that โ signatures, protocols, packers, anything taken apart.
Free, no advertising, and close to no rules beyond the obvious. Bilingual, English and Chinese. Register and post; nothing is gated.
One real call: paste a link, send it, get the normalised result back. The identity pool, the scheduler and the API reference it passed through on the way are all in the same console. The interface follows the browser's language, and both are written by hand rather than machine-translated. ไธญๆ็้ข
https://demo.douyin.wtf is a live instance, open to everyone. Sign in โ the login page fills the demo account in for you โ and use the console: the playground, the scheduler, the library, the API reference. The same account comes with an API key you can call the scraping endpoints with, shown in plaintext on the API keys page.
It is read-only. Demo requests are not written to the request log or the archive, so the database of a public instance cannot be filled by strangers, and switching demo mode off ends every demo session and kills the key immediately.
Rate limit: 30 requests per 10 seconds. Go over it and you are cooled down for 10 seconds, during which every request is refused. It is a shared instance, and the identity pool behind it is the ceiling for everybody using it at once.
What the demo is for is deciding whether to run your own. It is not a service to build on โ it can go down, be reset, or be switched off, and none of that will be announced.
v5 is a rewrite. It started from an empty branch and inherits no v4 code.
v4's real problem was never a shortage of features โ it was that the API would die quietly and nobody would know. A cookie expires, a signature algorithm changes, an endpoint gets rate-limited, and you find out when someone files an issue. v5 puts "you can see it" and "it heals itself" ahead of features.
| v4 | v5 | |
|---|---|---|
| Where identities come from | You copy cookies out of a browser into config.yaml | A headless browser mints guest identities, and the pool tops itself up when usable ones run low |
| How requests go out | Straight out, as they arrive | Health tiers, quantised LRU rotation, one in-flight lock per identity, a token bucket per (identity, endpoint), a circuit breaker per endpoint |
| When something breaks | You wait for a bug report | One structured record per request, live health for every identity and endpoint, visible in the console |
| Call style | Synchronous โ send and wait | Asynchronous by default (202 + task_id); add ?wait= to go back to synchronous |
| What is kept | Nothing; parsed and discarded | PostgreSQL + Redis. Everything parsed is archived, so a post deleted upstream is still here |
| Access control | None; anyone can call it | API keys with scopes and roles, managed in the console |
| Interface | A single PyWebIO page | A React console: identity pool, scheduler, library, downloads, logs, diagnostics |
| Ways in | REST | REST, MCP and a CLI, all over the same service layer |
| Signing | X-Bogus, A_Bogus | a_bogus, X-Bogus, X-Gnarly, X-Dynosaur in pure Python, with a browser fallback |
| Deployment | pip install -r requirements.txt + python start.py | docker compose up, three images |
| Platforms | Douyin, TikTok, Bilibili | Douyin, TikTok |
Bilibili is the one thing that went backwards: v5 does not have it yet. It shares neither the signing nor the identity machinery with Douyin and TikTok, so the rewrite left it out for now.
v4's code stays on the v4 branch,
the image is still published, and one command brings it up:
docker run -d --name dtk-v4 --restart unless-stopped \
-p 8080:80 evil0ctal/douyin_tiktok_download_api:V4.1.2
Then open http://localhost:8080; the API reference is at /docs. Port 8080 is
deliberate โ v5 binds 8000, so the two versions can run side by side on one machine.
Replace the Douyin cookie before you use it. v4 has no identity pool, and the cookie
baked into the image expired long ago, so Douyin endpoints answer 400 until you put
your own in:
docker cp dtk-v4:/app/crawlers/douyin/web/config.yaml ./douyin-web.yaml
# replace the Cookie line with one from your browser, then save
docker rm -f dtk-v4
docker run -d --name dtk-v4 --restart unless-stopped -p 8080:80 \
-v "$PWD/douyin-web.yaml:/app/crawlers/douyin/web/config.yaml" \
evil0ctal/douyin_tiktok_download_api:V4.1.2
TikTok's two config files are at /app/crawlers/tiktok/web/config.yaml and
/app/crawlers/tiktok/app/config.yaml, and are mounted the same way.
To keep it under Compose instead, one file is enough โ with douyin-web.yaml already
copied out next to it, or Docker will create a directory under that name and the app
will fail to read its config:
# compose.yml
services:
app:
image: evil0ctal/douyin_tiktok_download_api:V4.1.2
container_name: dtk-v4
restart: unless-stopped
ports:
- "8080:80"
environment:
TZ: Asia/Shanghai
volumes:
- ./douyin-web.yaml:/app/crawlers/douyin/web/config.yaml
docker rm -f dtk-v4 # the container from the run above holds the name
docker compose -p dtk-v4 up -d
main is v5 now and latest follows main, so pin the tag to stay on v4. V4.1.2
is the last v4 release; the branch merged a few PRs after it (Bilibili downloads, cookie
hot-reload), and that code is published under the commit tag 5be4838.
There is no guided installer for v4 โ the script in Quick start below installs v5. What is above is all v4 gets: the branch still takes PRs, but nothing new is built on it, and a fresh install should start on v5.
There are a few group chats around my open-source projects. If you want to work
on this one, or just talk shop, add me on WeChat at Evil0ctal with the note
github ไบคๆต and I will add you.
The groups are for learning from each other. No advertising and nothing illegal โ they are for making friends and talking about the work.
| Capability | Douyin | TikTok |
|---|---|---|
| One post (video or image album) | โ | โ |
| Author profile | โ | โ |
| An author's posts | โ | โ |
| An author's liked posts | โ | โ |
| Mixes / playlists | โ | โ |
| Comments | โ | โ |
| Comment replies | โ | โ |
| Followers | โ | โ |
| Following | โ | โ |
Douyin serves its follower and following lists only to a signed-in session, so those two endpoints are not registered at all: an endpoint that always returns an empty page is worth nothing. Importing your own logged-in cookies widens what the rest can see, too.
Media downloads, the content archive, counter snapshots, collections and a watchlist are built in; none of them needs another service.
Paste whatever you have โ a short link, a post URL, or the whole caption a platform app puts on your clipboard:
https://v.douyin.com/L4NpDJ6/
https://www.douyin.com/video/7126745726494821640
https://www.douyin.com/jingxuan?modal_id=7660875690212492466
https://www.tiktok.com/@evil0ctal/video/7156033831819037994
https://www.tiktok.com/t/ZTR9nkkmL/
2.84 nqe:/ <caption> https://v.douyin.com/L4FJNR3/ <sentence telling you to open the app>
Short links are followed and a link buried in a caption is extracted. A post id is also checked against the platform's own encoding first, so an id that cannot exist is refused here rather than costing an upstream request.
| Service | Python 3.12 ยท FastAPI ยท SQLAlchemy 2.0 (async) ยท Alembic ยท Typer ยท structlog |
| Transport | wreq (browser TLS fingerprint emulation) ยท httpx |
| Data | PostgreSQL + TimescaleDB ยท Redis |
| Console | React 19 ยท TypeScript ยท Vite ยท TanStack Query ยท wouter ยท i18next |
| Signing | a_bogus, X-Bogus, X-Gnarly and X-Dynosaur in pure Python |
| Identity minting | CloakBrowser, headless, in a container of its own, called over HTTP |
| Downloader | Go 1.23, standard library only, statically linked into a scratch image |
| Auth | argon2id password hashing ยท API keys with scopes |
| Protocols | REST (OpenAPI) ยท MCP (streamable-http) ยท CLI |
| Tooling | uv ยท ruff ยท mypy ยท pytest ยท Docker Compose |
Nothing beyond Postgres and Redis is required. No Kafka, no Elasticsearch, no object store, no Kubernetes.
CloakBrowser is pinned to a specific commit. That pin is a security control โ see docker/Dockerfile.browser.
First, what dtk is. Douyin_TikTok_Download_API is a mouthful, so the code
says DTK instead: Douyin + TiKTok. The two platforms, and not the
download or API halves of the name.
It is the Python package (src/dtk/), the command (dtk --help), the prefix on
every environment variable (DTK_SECRET_KEY and friends), the Compose project
name (-p dtk), and the three letters in the console's title bar. Where you see
dtk, it means Douyin_TikTok_Download_API.
Douyin_TikTok_Download_API/
โโโ src/dtk/ the service; all of it lives here
โ โโโ api/ FastAPI routes, auth, OpenAPI localisation
โ โโโ platforms/ Douyin and TikTok adapters: endpoints, params, parsers
โ โโโ signing/ a_bogus / X-Bogus / X-Gnarly / X-Dynosaur
โ โโโ transport/ outbound requests, response classification
โ โโโ identity/ identity minting and health
โ โโโ scheduler/ identity selection, token buckets, circuit breakers
โ โโโ services/ the business layer, shared by REST, MCP and the CLI
โ โโโ worker/ async tasks, callbacks, scheduled collection
โ โโโ db/ SQLAlchemy models and Alembic migrations
โ โโโ ops/ diagnostics, backups, health checks, alerting
โ โโโ media/ downloader client
โ โโโ models/ one content model across both platforms
โ โโโ urls/ link recognition, short-link expansion, id validation
โ โโโ mcp/ MCP server
โ โโโ cli/ the dtk command line
โ โโโ i18n/ server-side English and Chinese strings
โ โโโ core/ settings, logging, error types
โโโ web/ the React console, built into the app image
โ โโโ src/
โ โโโ pages/ one file per console page
โ โโโ components/ design system and shared components
โ โโโ locales/ console English and Chinese strings
โโโ docker/ three Dockerfiles, compose, and two sidecars
โ โโโ browser_rpc/ Python, wrapping CloakBrowser
โ โโโ downloader/ Go, the media download sidecar
โ โโโ compose.yml
โโโ documents/ user documentation, 17 pages in each language
โโโ tests/ unit / integration / contract / replay
โโโ scripts/ smoke.sh
โโโ .github/workflows/ CI and Docker image publishing
โโโ alembic.ini
โโโ pyproject.toml
โโโ Makefile
If you would rather not think about it, the guided script asks a few questions and brings the stack up โ it works out your distribution, checks for Docker, and scales the resource limits to the machine:
curl -fsSL https://raw.githubusercontent.com/Evil0ctal/Douyin_TikTok_Download_API/main/install/install.sh -o install.sh
less install.sh # reading it first is a good habit
bash install.sh
Afterwards the same script is the operations tool. Run it again and it finds the install and opens a menu: status, upgrade (compared against the latest GitHub release), passwords, an extra administrator, backup and restore, runtime settings, disk cleanup, stop or uninstall. --manage goes straight there.
Details in install/README.md. The manual route follows.
There are two ways to install this; below is the recommended one. For the by-hand route, see Without Docker.
| How | Who for | Full steps |
|---|---|---|
| Docker Compose (recommended) | Almost everyone, production included | Installation ยท First install |
| By hand | Docker is not an option, or you are changing the code | For development ยท On bare metal |
Installing from mainland China? Switch your mirrors before you start, or the pull will most likely time out: Network preparation in mainland China.
You need Docker and Docker Compose. Start by cloning the repository โ the compose file, the Dockerfiles and the migrations all live in it, and the default branch is v5:
git clone https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git
cd Douyin_TikTok_Download_API
Nothing in the repository ships a default password or key, so write .env next:
POSTGRES_PASSWORD=$(openssl rand -hex 24)
REDIS_PASSWORD=$(openssl rand -hex 24)
cat > .env <<EOF
DTK_SECRET_KEY=$(openssl rand -base64 48)
POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
REDIS_PASSWORD=${REDIS_PASSWORD}
DTK_DATABASE_URL=postgresql+asyncpg://dtk:${POSTGRES_PASSWORD}@postgres:5432/dtk
DTK_REDIS_URL=redis://:${REDIS_PASSWORD}@redis:6379/0
EOF
docker compose -p dtk -f docker/compose.yml up -d
docker compose -p dtk -f docker/compose.yml logs api # prints the setup token
Open http://127.0.0.1:8000 and use the token from the log to create the first administrator.
By default it is built locally: the first up compiles the application image from the
Dockerfile in this repository, which takes a few minutes. To skip that, point compose at
the published image instead:
export DTK_IMAGE=evil0ctal/douyin_tiktok_download_api
export DTK_IMAGE_TAG=latest
docker compose -p dtk -f docker/compose.yml pull
docker compose -p dtk -f docker/compose.yml up -d
The pull is not optional: these services declare both image and build, so compose
builds from the local Dockerfile whenever the image is not already on the machine rather
than reaching for a registry.
Images are published for linux/amd64 and linux/arm64, so Apple Silicon and a
Raspberry Pi both run natively. The browser container is not published: it installs
CloakBrowser from a pinned commit, and that pin is a security control that should be
yours to choose, so it stays a local build.
Supported, and it is how the project itself is developed. You provide PostgreSQL 17 (with the
TimescaleDB extension โ a plain postgres:17 will not do), Redis 8, Python 3.12 and uv, plus
Node 22 if you build the console. Two sets of steps:
What the containers were doing for you โ a non-root user, memory and CPU ceilings, a read-only root filesystem, process supervision โ you put back yourself. That section lists them one by one.
| What you want to do | Where |
|---|---|
| Size a machine, change the container limits | Three sizes ยท Changing the limits |
| Turn on the browser container or the downloader sidecar | The two optional profiles |
| Put TLS and a reverse proxy in front | Behind a reverse proxy |
| Understand how the environment is actually read | Environment variables |
| Confirm an install is genuinely healthy | Verifying an install |
| Read the compose file line by line | docker/README.md |
| Entry point | Where | What it is |
|---|---|---|
| Web console | / | Identity pool, scheduler, library, downloads, logs, diagnostics |
| API reference | /docs | Swagger UI inside the console, English and Chinese |
| Bare reference | /swagger, /redoc | No login required |
| REST API | /api/v1/... | 93 operations |
| MCP | /mcp | Shares the service layer with REST; client setup at /mcp-guide in the console |
| CLI | dtk --help | Same |
The main capabilities:
/api/v1/ios/shortcutThe console keeps an eye out for you: system.check_updates is on by default,
and if a newer release exists you get one notice after signing in, at most once
a day. That request goes from your browser to GitHub โ the server never
sends anything outward, so it does not tell anyone this instance exists. Turn it
off in Settings if you would rather it did not.
Updating is a pull and a restart. If you installed with the script, run it again and pick Upgrade:
bash install.sh --manage # pick 2
By hand it is:
cd /opt/dtk && git pull
# Running the published images (recommended): point DTK_IMAGE_TAG at the new one
docker compose -p dtk -f docker/compose.yml pull api worker downloader
docker compose -p dtk -f docker/compose.yml run --rm migrate
docker compose -p dtk -f docker/compose.yml up -d
Building locally instead? Swap pull for build. migrate runs on every start
and Alembic is idempotent, so running it separately is only about getting the
schema up before the containers switch over.
Your data stays put. The named volumes (postgres-data, redis-data,
media-data) survive a rebuild, so the identity pool, the archive, the settings
and the API keys are all where you left them.
The browser image only needs rebuilding when docker/Dockerfile.browser or the
CloakBrowser pin changes, which a normal version bump does not touch.
To go back, set DTK_IMAGE_TAG to the previous sha- or version and up -d
again. Migrations have no automatic downgrade โ back the database up before
upgrading, which is the only rollback that always works.
Read it online at douyin.wtf โ the same 17 pages, rendered,
searchable and in both languages. The markdown source is in
documents/ and is what the site is built from, so the two
never disagree.
New here: Quick start ยท Concepts ยท Console overview
Running it: Installation and deployment ยท Configuration reference ยท Operations ยท Troubleshooting ยท Security
Building against it: REST API guide ยท MCP and AI agents ยท CLI reference ยท Contributing
The endpoint reference is not in there: it is generated from the code that serves the
requests, so your own instance is the copy that is never out of date. Find it at /docs
inside the console, or at /swagger, /redoc and /openapi.json without a login. Both
languages.
ไธญๆๆๆกฃ๏ผdocuments/README.zh-CN.md
Reading this with an LLM? llms.txt is the whole documentation set
as one annotated index, in the llmstxt.org format.
| Issues | GitHub Issues โ public, keeps its history, and anyone who has hit the same thing can answer |
Evil0ctal1985@gmail.com โ reaches one person; best for anything that does not belong in public | |
| Author | @Evil0ctal |
Before asking, read Troubleshooting and include
the output of the Diagnose page or dtk diagnose. It answers most of what a maintainer
would otherwise have to ask you.
Started 2021/11/06 ยท GitHub @Evil0ctal
You may use, modify and distribute this project, including commercially and inside closed-source products. The grant is irrevocable. In return the licence asks you to:
This project is given away, and it stays free because sponsors pay for it rather than users. If you are making money from it, please consider sponsoring instead of only taking.
This is a request, not a licence condition โ Apache 2.0 permits commercial use, and nothing above takes that back.
The sponsors above pay for the project. This section is for the person who maintains it, and is entirely optional.
| Network | Address |
|---|---|
| Solana | HvtkxmDERbNXfCoojpdFAYN5mSWowjpXgedsG9eF7y9z |
| Tron (TRC20) | TQwSM2vjcnrdRU7gY7KNp2tCgMnK33azkT |
| Ethereum (ERC20) | 0x2f210FdfD981B59eC130370E5b1Aa8A6a06fb5Ad |
| BNB Smart Chain (BEP20) | 0x2f210FdfD981B59eC130370E5b1Aa8A6a06fb5Ad |
| Bitcoin | bc1q785j55cxlnjqe8lkwy8cq57t8t9vn3ak9tlsfy |
These networks carry the usual major tokens. USDT on Tron (TRC20) or Solana is the easiest to receive, and the cheapest to send.
Send only on the network an address is listed under. A transfer on the wrong chain cannot be recovered by anybody. Ethereum and BNB Smart Chain share one address on purpose: both are EVM chains, and the same key controls it.
GitHub Sponsors works too.
This fetches data from platforms that have their own terms, and it runs on your machine under your control. Respect those terms and applicable law, respect the people whose content you collect, do not use it to harass anyone, and do not redistribute work that is not yours. Nobody else can enforce any of that for you.
Python
75.0%
TypeScript
18.5%
Shell
2.4%
CSS
2.1%
Go
1.4%
๐ Self-hosted TikTok & Douyin scraper and no-watermark video downloader โ async REST API, MCP server, CLI and web console for posts, profiles, comments and playlists. Self-healing identity pool, PostgreSQL archive, one docker compose up. ๆ้ณใTikTok ๆฐๆฎ้้ไธๆ ๆฐดๅฐ่ง้ขไธ่ฝฝ API๏ผ่ชๆ็ฎก๏ผๆฏๆ MCP ่ฐ็จไธ Docker ไธ้ฎ้จ็ฝฒใ
20,134
stars
210
commits
Python
primary language
Sep 15, 2026
updated
๐ A self-hosted data API for Douyin and TikTok. One docker compose up, an identity pool that maintains itself, and a REST API, MCP server and web console on top.
Open source, free, and it runs on your own machine โ no signup, no quota, nobody else in the path. It fetches posts, authors, comments and search, downloads video and image albums without a watermark (it picks the clean stream the platform already publishes rather than stripping anything), and keeps what it collects in your own PostgreSQL.
These sponsors paid to be here, and Douyin_TikTok_Download_API stays free and open because of it. To sponsor the project, see my GitHub Sponsors page.
Your Ultimate Social Media Data & API Marketplace
Professional data solutions for Douyin, Xiaohongshu, TikTok, Instagram, YouTube,
Twitter, and more.
Real-time Data | Flexible APIs | Seamless Integration | Competitive Pricing with Discounts
Buy and sell custom APIs, services, and social media solutions on the
TikHub.io Marketplace, alongside developers, businesses and content creators.
Trusted by leading global influencer marketing and social media intelligence platforms
โ Visit TikHub.io ย ยทย API docs
Somewhere to put what you work out. This project exists because people wrote down how a signature was built; the forum is for the next round of that โ signatures, protocols, packers, anything taken apart.
Free, no advertising, and close to no rules beyond the obvious. Bilingual, English and Chinese. Register and post; nothing is gated.
One real call: paste a link, send it, get the normalised result back. The identity pool, the scheduler and the API reference it passed through on the way are all in the same console. The interface follows the browser's language, and both are written by hand rather than machine-translated. ไธญๆ็้ข
https://demo.douyin.wtf is a live instance, open to everyone. Sign in โ the login page fills the demo account in for you โ and use the console: the playground, the scheduler, the library, the API reference. The same account comes with an API key you can call the scraping endpoints with, shown in plaintext on the API keys page.
It is read-only. Demo requests are not written to the request log or the archive, so the database of a public instance cannot be filled by strangers, and switching demo mode off ends every demo session and kills the key immediately.
Rate limit: 30 requests per 10 seconds. Go over it and you are cooled down for 10 seconds, during which every request is refused. It is a shared instance, and the identity pool behind it is the ceiling for everybody using it at once.
What the demo is for is deciding whether to run your own. It is not a service to build on โ it can go down, be reset, or be switched off, and none of that will be announced.
v5 is a rewrite. It started from an empty branch and inherits no v4 code.
v4's real problem was never a shortage of features โ it was that the API would die quietly and nobody would know. A cookie expires, a signature algorithm changes, an endpoint gets rate-limited, and you find out when someone files an issue. v5 puts "you can see it" and "it heals itself" ahead of features.
| v4 | v5 | |
|---|---|---|
| Where identities come from | You copy cookies out of a browser into config.yaml | A headless browser mints guest identities, and the pool tops itself up when usable ones run low |
| How requests go out | Straight out, as they arrive | Health tiers, quantised LRU rotation, one in-flight lock per identity, a token bucket per (identity, endpoint), a circuit breaker per endpoint |
| When something breaks | You wait for a bug report | One structured record per request, live health for every identity and endpoint, visible in the console |
| Call style | Synchronous โ send and wait | Asynchronous by default (202 + task_id); add ?wait= to go back to synchronous |
| What is kept | Nothing; parsed and discarded | PostgreSQL + Redis. Everything parsed is archived, so a post deleted upstream is still here |
| Access control | None; anyone can call it | API keys with scopes and roles, managed in the console |
| Interface | A single PyWebIO page | A React console: identity pool, scheduler, library, downloads, logs, diagnostics |
| Ways in | REST | REST, MCP and a CLI, all over the same service layer |
| Signing | X-Bogus, A_Bogus | a_bogus, X-Bogus, X-Gnarly, X-Dynosaur in pure Python, with a browser fallback |
| Deployment | pip install -r requirements.txt + python start.py | docker compose up, three images |
| Platforms | Douyin, TikTok, Bilibili | Douyin, TikTok |
Bilibili is the one thing that went backwards: v5 does not have it yet. It shares neither the signing nor the identity machinery with Douyin and TikTok, so the rewrite left it out for now.
v4's code stays on the v4 branch,
the image is still published, and one command brings it up:
docker run -d --name dtk-v4 --restart unless-stopped \
-p 8080:80 evil0ctal/douyin_tiktok_download_api:V4.1.2
Then open http://localhost:8080; the API reference is at /docs. Port 8080 is
deliberate โ v5 binds 8000, so the two versions can run side by side on one machine.
Replace the Douyin cookie before you use it. v4 has no identity pool, and the cookie
baked into the image expired long ago, so Douyin endpoints answer 400 until you put
your own in:
docker cp dtk-v4:/app/crawlers/douyin/web/config.yaml ./douyin-web.yaml
# replace the Cookie line with one from your browser, then save
docker rm -f dtk-v4
docker run -d --name dtk-v4 --restart unless-stopped -p 8080:80 \
-v "$PWD/douyin-web.yaml:/app/crawlers/douyin/web/config.yaml" \
evil0ctal/douyin_tiktok_download_api:V4.1.2
TikTok's two config files are at /app/crawlers/tiktok/web/config.yaml and
/app/crawlers/tiktok/app/config.yaml, and are mounted the same way.
To keep it under Compose instead, one file is enough โ with douyin-web.yaml already
copied out next to it, or Docker will create a directory under that name and the app
will fail to read its config:
# compose.yml
services:
app:
image: evil0ctal/douyin_tiktok_download_api:V4.1.2
container_name: dtk-v4
restart: unless-stopped
ports:
- "8080:80"
environment:
TZ: Asia/Shanghai
volumes:
- ./douyin-web.yaml:/app/crawlers/douyin/web/config.yaml
docker rm -f dtk-v4 # the container from the run above holds the name
docker compose -p dtk-v4 up -d
main is v5 now and latest follows main, so pin the tag to stay on v4. V4.1.2
is the last v4 release; the branch merged a few PRs after it (Bilibili downloads, cookie
hot-reload), and that code is published under the commit tag 5be4838.
There is no guided installer for v4 โ the script in Quick start below installs v5. What is above is all v4 gets: the branch still takes PRs, but nothing new is built on it, and a fresh install should start on v5.
There are a few group chats around my open-source projects. If you want to work
on this one, or just talk shop, add me on WeChat at Evil0ctal with the note
github ไบคๆต and I will add you.
The groups are for learning from each other. No advertising and nothing illegal โ they are for making friends and talking about the work.
| Capability | Douyin | TikTok |
|---|---|---|
| One post (video or image album) | โ | โ |
| Author profile | โ | โ |
| An author's posts | โ | โ |
| An author's liked posts | โ | โ |
| Mixes / playlists | โ | โ |
| Comments | โ | โ |
| Comment replies | โ | โ |
| Followers | โ | โ |
| Following | โ | โ |
Douyin serves its follower and following lists only to a signed-in session, so those two endpoints are not registered at all: an endpoint that always returns an empty page is worth nothing. Importing your own logged-in cookies widens what the rest can see, too.
Media downloads, the content archive, counter snapshots, collections and a watchlist are built in; none of them needs another service.
Paste whatever you have โ a short link, a post URL, or the whole caption a platform app puts on your clipboard:
https://v.douyin.com/L4NpDJ6/
https://www.douyin.com/video/7126745726494821640
https://www.douyin.com/jingxuan?modal_id=7660875690212492466
https://www.tiktok.com/@evil0ctal/video/7156033831819037994
https://www.tiktok.com/t/ZTR9nkkmL/
2.84 nqe:/ <caption> https://v.douyin.com/L4FJNR3/ <sentence telling you to open the app>
Short links are followed and a link buried in a caption is extracted. A post id is also checked against the platform's own encoding first, so an id that cannot exist is refused here rather than costing an upstream request.
| Service | Python 3.12 ยท FastAPI ยท SQLAlchemy 2.0 (async) ยท Alembic ยท Typer ยท structlog |
| Transport | wreq (browser TLS fingerprint emulation) ยท httpx |
| Data | PostgreSQL + TimescaleDB ยท Redis |
| Console | React 19 ยท TypeScript ยท Vite ยท TanStack Query ยท wouter ยท i18next |
| Signing | a_bogus, X-Bogus, X-Gnarly and X-Dynosaur in pure Python |
| Identity minting | CloakBrowser, headless, in a container of its own, called over HTTP |
| Downloader | Go 1.23, standard library only, statically linked into a scratch image |
| Auth | argon2id password hashing ยท API keys with scopes |
| Protocols | REST (OpenAPI) ยท MCP (streamable-http) ยท CLI |
| Tooling | uv ยท ruff ยท mypy ยท pytest ยท Docker Compose |
Nothing beyond Postgres and Redis is required. No Kafka, no Elasticsearch, no object store, no Kubernetes.
CloakBrowser is pinned to a specific commit. That pin is a security control โ see docker/Dockerfile.browser.
First, what dtk is. Douyin_TikTok_Download_API is a mouthful, so the code
says DTK instead: Douyin + TiKTok. The two platforms, and not the
download or API halves of the name.
It is the Python package (src/dtk/), the command (dtk --help), the prefix on
every environment variable (DTK_SECRET_KEY and friends), the Compose project
name (-p dtk), and the three letters in the console's title bar. Where you see
dtk, it means Douyin_TikTok_Download_API.
Douyin_TikTok_Download_API/
โโโ src/dtk/ the service; all of it lives here
โ โโโ api/ FastAPI routes, auth, OpenAPI localisation
โ โโโ platforms/ Douyin and TikTok adapters: endpoints, params, parsers
โ โโโ signing/ a_bogus / X-Bogus / X-Gnarly / X-Dynosaur
โ โโโ transport/ outbound requests, response classification
โ โโโ identity/ identity minting and health
โ โโโ scheduler/ identity selection, token buckets, circuit breakers
โ โโโ services/ the business layer, shared by REST, MCP and the CLI
โ โโโ worker/ async tasks, callbacks, scheduled collection
โ โโโ db/ SQLAlchemy models and Alembic migrations
โ โโโ ops/ diagnostics, backups, health checks, alerting
โ โโโ media/ downloader client
โ โโโ models/ one content model across both platforms
โ โโโ urls/ link recognition, short-link expansion, id validation
โ โโโ mcp/ MCP server
โ โโโ cli/ the dtk command line
โ โโโ i18n/ server-side English and Chinese strings
โ โโโ core/ settings, logging, error types
โโโ web/ the React console, built into the app image
โ โโโ src/
โ โโโ pages/ one file per console page
โ โโโ components/ design system and shared components
โ โโโ locales/ console English and Chinese strings
โโโ docker/ three Dockerfiles, compose, and two sidecars
โ โโโ browser_rpc/ Python, wrapping CloakBrowser
โ โโโ downloader/ Go, the media download sidecar
โ โโโ compose.yml
โโโ documents/ user documentation, 17 pages in each language
โโโ tests/ unit / integration / contract / replay
โโโ scripts/ smoke.sh
โโโ .github/workflows/ CI and Docker image publishing
โโโ alembic.ini
โโโ pyproject.toml
โโโ Makefile
If you would rather not think about it, the guided script asks a few questions and brings the stack up โ it works out your distribution, checks for Docker, and scales the resource limits to the machine:
curl -fsSL https://raw.githubusercontent.com/Evil0ctal/Douyin_TikTok_Download_API/main/install/install.sh -o install.sh
less install.sh # reading it first is a good habit
bash install.sh
Afterwards the same script is the operations tool. Run it again and it finds the install and opens a menu: status, upgrade (compared against the latest GitHub release), passwords, an extra administrator, backup and restore, runtime settings, disk cleanup, stop or uninstall. --manage goes straight there.
Details in install/README.md. The manual route follows.
There are two ways to install this; below is the recommended one. For the by-hand route, see Without Docker.
| How | Who for | Full steps |
|---|---|---|
| Docker Compose (recommended) | Almost everyone, production included | Installation ยท First install |
| By hand | Docker is not an option, or you are changing the code | For development ยท On bare metal |
Installing from mainland China? Switch your mirrors before you start, or the pull will most likely time out: Network preparation in mainland China.
You need Docker and Docker Compose. Start by cloning the repository โ the compose file, the Dockerfiles and the migrations all live in it, and the default branch is v5:
git clone https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git
cd Douyin_TikTok_Download_API
Nothing in the repository ships a default password or key, so write .env next:
POSTGRES_PASSWORD=$(openssl rand -hex 24)
REDIS_PASSWORD=$(openssl rand -hex 24)
cat > .env <<EOF
DTK_SECRET_KEY=$(openssl rand -base64 48)
POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
REDIS_PASSWORD=${REDIS_PASSWORD}
DTK_DATABASE_URL=postgresql+asyncpg://dtk:${POSTGRES_PASSWORD}@postgres:5432/dtk
DTK_REDIS_URL=redis://:${REDIS_PASSWORD}@redis:6379/0
EOF
docker compose -p dtk -f docker/compose.yml up -d
docker compose -p dtk -f docker/compose.yml logs api # prints the setup token
Open http://127.0.0.1:8000 and use the token from the log to create the first administrator.
By default it is built locally: the first up compiles the application image from the
Dockerfile in this repository, which takes a few minutes. To skip that, point compose at
the published image instead:
export DTK_IMAGE=evil0ctal/douyin_tiktok_download_api
export DTK_IMAGE_TAG=latest
docker compose -p dtk -f docker/compose.yml pull
docker compose -p dtk -f docker/compose.yml up -d
The pull is not optional: these services declare both image and build, so compose
builds from the local Dockerfile whenever the image is not already on the machine rather
than reaching for a registry.
Images are published for linux/amd64 and linux/arm64, so Apple Silicon and a
Raspberry Pi both run natively. The browser container is not published: it installs
CloakBrowser from a pinned commit, and that pin is a security control that should be
yours to choose, so it stays a local build.
Supported, and it is how the project itself is developed. You provide PostgreSQL 17 (with the
TimescaleDB extension โ a plain postgres:17 will not do), Redis 8, Python 3.12 and uv, plus
Node 22 if you build the console. Two sets of steps:
What the containers were doing for you โ a non-root user, memory and CPU ceilings, a read-only root filesystem, process supervision โ you put back yourself. That section lists them one by one.
| What you want to do | Where |
|---|---|
| Size a machine, change the container limits | Three sizes ยท Changing the limits |
| Turn on the browser container or the downloader sidecar | The two optional profiles |
| Put TLS and a reverse proxy in front | Behind a reverse proxy |
| Understand how the environment is actually read | Environment variables |
| Confirm an install is genuinely healthy | Verifying an install |
| Read the compose file line by line | docker/README.md |
| Entry point | Where | What it is |
|---|---|---|
| Web console | / | Identity pool, scheduler, library, downloads, logs, diagnostics |
| API reference | /docs | Swagger UI inside the console, English and Chinese |
| Bare reference | /swagger, /redoc | No login required |
| REST API | /api/v1/... | 93 operations |
| MCP | /mcp | Shares the service layer with REST; client setup at /mcp-guide in the console |
| CLI | dtk --help | Same |
The main capabilities:
/api/v1/ios/shortcutThe console keeps an eye out for you: system.check_updates is on by default,
and if a newer release exists you get one notice after signing in, at most once
a day. That request goes from your browser to GitHub โ the server never
sends anything outward, so it does not tell anyone this instance exists. Turn it
off in Settings if you would rather it did not.
Updating is a pull and a restart. If you installed with the script, run it again and pick Upgrade:
bash install.sh --manage # pick 2
By hand it is:
cd /opt/dtk && git pull
# Running the published images (recommended): point DTK_IMAGE_TAG at the new one
docker compose -p dtk -f docker/compose.yml pull api worker downloader
docker compose -p dtk -f docker/compose.yml run --rm migrate
docker compose -p dtk -f docker/compose.yml up -d
Building locally instead? Swap pull for build. migrate runs on every start
and Alembic is idempotent, so running it separately is only about getting the
schema up before the containers switch over.
Your data stays put. The named volumes (postgres-data, redis-data,
media-data) survive a rebuild, so the identity pool, the archive, the settings
and the API keys are all where you left them.
The browser image only needs rebuilding when docker/Dockerfile.browser or the
CloakBrowser pin changes, which a normal version bump does not touch.
To go back, set DTK_IMAGE_TAG to the previous sha- or version and up -d
again. Migrations have no automatic downgrade โ back the database up before
upgrading, which is the only rollback that always works.
Read it online at douyin.wtf โ the same 17 pages, rendered,
searchable and in both languages. The markdown source is in
documents/ and is what the site is built from, so the two
never disagree.
New here: Quick start ยท Concepts ยท Console overview
Running it: Installation and deployment ยท Configuration reference ยท Operations ยท Troubleshooting ยท Security
Building against it: REST API guide ยท MCP and AI agents ยท CLI reference ยท Contributing
The endpoint reference is not in there: it is generated from the code that serves the
requests, so your own instance is the copy that is never out of date. Find it at /docs
inside the console, or at /swagger, /redoc and /openapi.json without a login. Both
languages.
ไธญๆๆๆกฃ๏ผdocuments/README.zh-CN.md
Reading this with an LLM? llms.txt is the whole documentation set
as one annotated index, in the llmstxt.org format.
| Issues | GitHub Issues โ public, keeps its history, and anyone who has hit the same thing can answer |
Evil0ctal1985@gmail.com โ reaches one person; best for anything that does not belong in public | |
| Author | @Evil0ctal |
Before asking, read Troubleshooting and include
the output of the Diagnose page or dtk diagnose. It answers most of what a maintainer
would otherwise have to ask you.
Started 2021/11/06 ยท GitHub @Evil0ctal
You may use, modify and distribute this project, including commercially and inside closed-source products. The grant is irrevocable. In return the licence asks you to:
This project is given away, and it stays free because sponsors pay for it rather than users. If you are making money from it, please consider sponsoring instead of only taking.
This is a request, not a licence condition โ Apache 2.0 permits commercial use, and nothing above takes that back.
The sponsors above pay for the project. This section is for the person who maintains it, and is entirely optional.
| Network | Address |
|---|---|
| Solana | HvtkxmDERbNXfCoojpdFAYN5mSWowjpXgedsG9eF7y9z |
| Tron (TRC20) | TQwSM2vjcnrdRU7gY7KNp2tCgMnK33azkT |
| Ethereum (ERC20) | 0x2f210FdfD981B59eC130370E5b1Aa8A6a06fb5Ad |
| BNB Smart Chain (BEP20) | 0x2f210FdfD981B59eC130370E5b1Aa8A6a06fb5Ad |
| Bitcoin | bc1q785j55cxlnjqe8lkwy8cq57t8t9vn3ak9tlsfy |
These networks carry the usual major tokens. USDT on Tron (TRC20) or Solana is the easiest to receive, and the cheapest to send.
Send only on the network an address is listed under. A transfer on the wrong chain cannot be recovered by anybody. Ethereum and BNB Smart Chain share one address on purpose: both are EVM chains, and the same key controls it.
GitHub Sponsors works too.
This fetches data from platforms that have their own terms, and it runs on your machine under your control. Respect those terms and applicable law, respect the people whose content you collect, do not use it to harass anyone, and do not redistribute work that is not yours. Nobody else can enforce any of that for you.
Python
75.0%
TypeScript
18.5%
Shell
2.4%
CSS
2.1%
Go
1.4%