Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. --- name: douyin-downloader description: Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. metadata: author: Ming Fang version: "1.0.0" --- Douyin Downloader — 抖音视频无水印下载 Self-hosted Douyin/TikTok video downloader via Docker API. ⚠️ 隐私 & 安全声明 🔴 核心风险 **Cookie = 完整登录会话**: - 获取 Cookie 需要**登录抖音账号** - Cookie 包含完整登录会话,**相当于账号密码** - 如果泄 Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 3/1/2026.
Freshness
Last checked 3/1/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
douyin-downloader is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. --- name: douyin-downloader description: Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. metadata: author: Ming Fang version: "1.0.0" --- Douyin Downloader — 抖音视频无水印下载 Self-hosted Douyin/TikTok video downloader via Docker API. ⚠️ 隐私 & 安全声明 🔴 核心风险 **Cookie = 完整登录会话**: - 获取 Cookie 需要**登录抖音账号** - Cookie 包含完整登录会话,**相当于账号密码** - 如果泄
Public facts
7
Change events
1
Artifacts
0
Freshness
Mar 1, 2026
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 3/1/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Mfang0126
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 3/1/2026.
Setup snapshot
git clone https://github.com/mfang0126/douyin-downloader.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Mfang0126
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
docker ps | grep douyin_api
bash
docker start douyin_api
bash
curl -L "http://localhost:8080/api/download?url=<抖音链接>&prefix=false&with_watermark=false" -o video.mp4
bash
curl -L "http://localhost:8080/api/download?url=<抖音链接>&prefix=false&with_watermark=false" -o video.mp4
bash
curl -s "http://localhost:8080/api/hybrid/video_data?url=<抖音链接>" | jq
bash
curl -s "http://localhost:8080/api/hybrid/video_data?url=<抖音链接>" | jq
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. --- name: douyin-downloader description: Download Douyin (抖音) videos without watermarks using a local Docker-based API service. Supports video data extraction and batch downloads. metadata: author: Ming Fang version: "1.0.0" --- Douyin Downloader — 抖音视频无水印下载 Self-hosted Douyin/TikTok video downloader via Docker API. ⚠️ 隐私 & 安全声明 🔴 核心风险 **Cookie = 完整登录会话**: - 获取 Cookie 需要**登录抖音账号** - Cookie 包含完整登录会话,**相当于账号密码** - 如果泄
Self-hosted Douyin/TikTok video downloader via Docker API.
Cookie = 完整登录会话:
第三方镜像:
evil0ctal/douyin_tiktok_download_api(非本作者创建)/app/crawlers/douyin/web/config.yaml)*.douyin.com 发送(可通过 docker logs 验证)详细说明: PRIVACY.md
Docker container must be running:
docker ps | grep douyin_api
If not running, start it:
docker start douyin_api
curl -L "http://localhost:8080/api/download?url=<抖音链接>&prefix=false&with_watermark=false" -o video.mp4
curl -s "http://localhost:8080/api/hybrid/video_data?url=<抖音链接>" | jq
Douyin requires valid cookies for API access. Cookies expire every 1-2 weeks.
Step 1: Get Cookie from browser
douyin.com in Chrome and loginF12 → Network tabCmd+R)Request Headers → Cookie:Step 2: Run update script
scripts/update-cookie.sh "your-cookie-string"
The script will:
Base URL: http://localhost:8080
/api/hybrid/video_dataGet video metadata (author, likes, description, etc.)
Parameters:
url (required): Douyin share URLExample:
curl "http://localhost:8080/api/hybrid/video_data?url=https://v.douyin.com/xxxxx/"
/api/downloadDownload video without watermark
Parameters:
url (required): Douyin share URLprefix (optional): Add filename prefix (default: false)with_watermark (optional): Include watermark (default: false)Example:
curl -L "http://localhost:8080/api/download?url=https://v.douyin.com/xxxxx/&prefix=false&with_watermark=false" -o video.mp4
All Douyin share formats work:
https://v.douyin.com/xxxxx/https://www.douyin.com/video/12345678907.43 pda:/ 复制此链接...docker ps | grep douyin_api
docker logs douyin_api --tail 20
docker restart douyin_api
docker stop douyin_api
docker start douyin_api
Cause: Cookie expired
Fix: Update cookie using the update script (see Cookie Management section)
Cause: Docker container not running
Fix:
docker start douyin_api
Cause: Too many requests in short time
Fix: Wait 1-2 minutes, then retry
evil0ctal/douyin_tiktok_download_api:latestdouyin_api/app/crawlers/douyin/web/config.yamlCookie: line~/.openclaw/workspace/chrome-cookie-sniffer/update_douyin_cookie.shIf container doesn't exist:
docker pull evil0ctal/douyin_tiktok_download_api:latest
docker run -d --name douyin_api -p 8080:80 evil0ctal/douyin_tiktok_download_api:latest
Then update cookies (see Cookie Management).
#!/bin/bash
# Download multiple videos
URLS=(
"https://v.douyin.com/xxxxx/"
"https://v.douyin.com/yyyyy/"
"https://v.douyin.com/zzzzz/"
)
for i in "${!URLS[@]}"; do
curl -L "http://localhost:8080/api/download?url=${URLS[$i]}&prefix=false&with_watermark=false" \
-o "video_$i.mp4"
echo "Downloaded video $i"
sleep 2 # Avoid rate limit
done
import requests
API = "http://localhost:8080"
def download_douyin(url: str, output: str):
"""Download Douyin video without watermark"""
r = requests.get(f"{API}/api/download",
params={"url": url, "prefix": "false", "with_watermark": "false"},
stream=True)
r.raise_for_status()
with open(output, "wb") as f:
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
return output
def get_video_info(url: str):
"""Get video metadata"""
r = requests.get(f"{API}/api/hybrid/video_data", params={"url": url})
r.raise_for_status()
return r.json()
# Usage
url = "https://v.douyin.com/xxxxx/"
info = get_video_info(url)
print(f"Title: {info['data']['desc']}")
print(f"Author: {info['data']['author']['nickname']}")
print(f"Likes: {info['data']['statistics']['digg_count']}")
download_douyin(url, "video.mp4")
API documentation available at:
http://localhost:8080/docs
Interactive Swagger UI for testing endpoints.
Based on Douyin_TikTok_Download_API by Evil0ctal.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
Yes
Data region
global
Protocol support
Requires: openclew, lang:typescript, streaming
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract"
curl -s "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript",
"streaming"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": true,
"inputSchemaRef": "https://github.com/mfang0126/douyin-downloader#input",
"outputSchemaRef": "https://github.com/mfang0126/douyin-downloader#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:42:31.108Z",
"sourceUpdatedAt": "2026-02-24T19:42:31.108Z",
"freshnessSeconds": 4444080
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T06:10:31.400Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Mfang0126",
"href": "https://github.com/mfang0126/douyin-downloader",
"sourceUrl": "https://github.com/mfang0126/douyin-downloader",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-03-01T06:03:56.863Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/mfang0126/douyin-downloader",
"sourceUrl": "https://github.com/mfang0126/douyin-downloader",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-03-01T06:03:56.863Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:42:31.108Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:42:31.108Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/mfang0126/douyin-downloader#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:42:31.108Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mfang0126-douyin-downloader/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to douyin-downloader and adjacent AI workflows.