← 返回 Skills 市场
Douyin (TikTok China) API
作者
justoneapi
· GitHub ↗
· v1.0.10
· MIT-0
222
总下载
0
收藏
1
当前安装
11
版本数
在 OpenClaw 中安装
/install justoneapi-douyin
功能描述
Analyze Douyin (TikTok China) workflows with JustOneAPI, including user Profile, user Published Videos, and video Details across 8 operations.
使用说明 (SKILL.md)
Douyin (TikTok China)
This skill wraps 8 Douyin (TikTok China) operations exposed by JustOneAPI. It is strongest for user Profile, user Published Videos, video Details, and video Search. Expect common inputs such as page, keyword, secUid, awemeId, commentId.
When To Use It
- The user needs user Profile or user Published Videos on Douyin (TikTok China).
- The task lines up with video Details rather than a generic cross-platform workflow.
- The user can provide identifiers or filters such as
page,keyword,secUid,awemeId. - The user wants an exact API-backed answer instead of a freeform summary.
Representative Operations
getUserDetailV3: User Profile — Get Douyin (TikTok China) user Profile data, including follower counts, verification status, and bio details, for creator research and account analysisgetUserVideoListV3: User Published Videos — Get Douyin (TikTok China) user Published Videos data, including captions, covers, and publish times, for account monitoringgetDouyinVideoDetailV2: Video Details — Get Douyin (TikTok China) video Details data, including author details, publish time, and engagement counts, for video research, archiving, and performance analysissearchVideoV4: Video Search — Get Douyin (TikTok China) video Search data, including metadata and engagement signals, for content discovery, trend research, and competitive monitoring
Request Pattern
- 8 operations are available in this skill.
- HTTP methods used here:
GET. - The most common non-token parameters are
page,keyword,secUid,awemeId,commentId. - All operations in this skill are parameter-driven requests; none require a request body.
How To Work
- Read
generated/operations.mdbefore choosing an endpoint. - Start with one of these operations when it matches the user's request:
getUserDetailV3,getUserVideoListV3,getDouyinVideoDetailV2,searchVideoV4. - Pick the smallest matching operation instead of guessing.
- Ask the user for any missing required parameter. Do not invent values.
- Call the helper with:
node {baseDir}/bin/run.mjs --operation "\x3Coperation-id>" --token "$JUST_ONE_API_TOKEN" --params-json '{"key":"value"}'
Environment
- Required:
JUST_ONE_API_TOKEN - This skill uses
JUST_ONE_API_TOKENonly for authenticated Just One API requests. - Keep
JUST_ONE_API_TOKENprivate. Do not paste it into chat messages, screenshots, or logs. - Get a token from Just One API Dashboard.
- Authentication details: Just One API Usage Guide.
Output Rules
- Start with a plain-language answer tied to the Douyin (TikTok China) task the user asked for.
- Include the most decision-relevant fields from the selected endpoint before dumping raw JSON.
- When using
getUserDetailV3, explain why the returned fields answer the user's question. - If the user gave filters such as
page,keyword,secUid, echo those back so the scope is explicit. - If the backend errors, include the backend payload and the exact operation ID.
安全使用建议
This skill appears to be a straightforward JustOneAPI Douyin wrapper and is internally consistent. Before installing: (1) Confirm you trust the JustOneAPI service and the skill publisher (homepage: https://api.justoneapi.com). (2) Provide only a JustOneAPI token with least privilege and rotate it if you suspect exposure. (3) Be aware the token is sent as a URL query parameter — it can appear in server logs or referer headers, so avoid pasting tokens into chats/screenshots. (4) If you need stronger assurance, inspect the full bin/run.mjs source locally to verify there are no additional network destinations or hidden behaviors beyond api.justoneapi.com.
能力标签
能力评估
Purpose & Capability
The name/description state this is a Douyin (TikTok China) API wrapper and the skill requests JUST_ONE_API_TOKEN and node — exactly what a simple API wrapper needs. The listed operations and parameters (secUid, awemeId, keyword, etc.) match the stated purpose.
Instruction Scope
SKILL.md instructs the agent to select an endpoint, ask for missing parameters, and run the bundled CLI (node bin/run.mjs) with the provided token. The instructions do not direct reading unrelated files or other environment variables, nor do they instruct sending data to endpoints other than api.justoneapi.com.
Install Mechanism
There is no install spec (instruction-only with a bundled run script). The included bin/run.mjs and generated OpenAPI artifacts are local and do not download external code during install. This is a low-risk install posture.
Credentials
Only one credential is required: JUST_ONE_API_TOKEN (declared as the primary credential). This is proportionate to the skill's purpose. Note: the API expects the token as a query parameter named 'token' (per operations), which can increase exposure risk via URL logs or referer headers — users should treat the token as sensitive and avoid pasting it into chats or logs.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and has no special persistence or elevated privileges. Autonomous invocation is permitted but is the platform default and not combined with other red flags.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install justoneapi-douyin - 安装完成后,直接呼叫该 Skill 的名称或使用
/justoneapi-douyin触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.10
- Reduced available operations from 9 to 8, reflecting current JustOneAPI endpoints.
- Updated main operation names and parameters (e.g., `getUserVideoListV1` → `getUserVideoListV3`, added `commentId` as a common parameter).
- Refreshed documentation to match the present API structure and rename endpoints accordingly.
- Adjusted guidance, usage instructions, and representative operations in all references.
v1.0.9
- Updated authentication documentation link in the Environment section for clearer guidance.
- Changed the Just One API Usage Guide URL to use standard homepage tracking parameters.
v1.0.8
- Updated the Just One API dashboard signup URL with tracking parameters for improved attribution.
- No functional or operation changes to the skill logic or capabilities.
v1.0.7
- Clarified that JUST_ONE_API_TOKEN is used only for authenticated Just One API requests in the "Environment" section.
- No changes to code or functionality. Documentation update only.
v1.0.6
- Added a security reminder under "Environment" to keep the `JUST_ONE_API_TOKEN` private and not paste it into chat messages, screenshots, or logs.
- No other changes to logic or functionality; documentation improvement only.
v1.0.5
- Added guidance on how to obtain and set the required JUST_ONE_API_TOKEN, including new links to the Just One API Dashboard and usage documentation.
- Expanded the Environment section to clarify authentication steps.
v1.0.4
rename
v1.0.3
- Updated the skill name from "justoneapi_douyin" to "Douyin (TikTok China) API".
- No changes to operations, functionality, or usage instructions.
- Updated only SKILL.md for alignment with naming conventions.
v1.0.2
- Expanded skill description to emphasize support for nine Douyin (TikTok China) operations focused on user profile, published videos, video details, and video search.
- Outlined representative operations and specified common parameters (e.g., secUid, awemeId, keyword, page).
- Updated usage guidance for selecting endpoints and constructing requests.
- Clarified output and error handling rules, including field relevance and explicit filter reporting.
v1.0.1
- Added the --token "$JUST_ONE_API_TOKEN" flag to the example command in documentation.
- Updated SKILL.md to clarify how to pass the API token in the helper script.
v1.0.0
Initial release of justoneapi-douyin skill:
- Provides access to JustOneAPI Douyin (TikTok China) endpoints via HTTP APIs.
- Requires the environment variable JUST_ONE_API_TOKEN.
- Offers raw API output plus a brief, structured explanation.
- Guides users to select the correct endpoint based on generated/operations.md.
- Supports command-line invocation for endpoint operations.
元数据
常见问题
Douyin (TikTok China) API 是什么?
Analyze Douyin (TikTok China) workflows with JustOneAPI, including user Profile, user Published Videos, and video Details across 8 operations. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 222 次。
如何安装 Douyin (TikTok China) API?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install justoneapi-douyin」即可一键安装,无需额外配置。
Douyin (TikTok China) API 是免费的吗?
是的,Douyin (TikTok China) API 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Douyin (TikTok China) API 支持哪些平台?
Douyin (TikTok China) API 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Douyin (TikTok China) API?
由 justoneapi(@justoneapi)开发并维护,当前版本 v1.0.10。
推荐 Skills