← 返回 Skills 市场
TikTok API
作者
justoneapi
· GitHub ↗
· v1.0.8
· MIT-0
164
总下载
0
收藏
1
当前安装
8
版本数
在 OpenClaw 中安装
/install justoneapi-tiktok
功能描述
Analyze TikTok workflows with JustOneAPI, including user Published Posts, post Details, and user Profile across 7 operations.
使用说明 (SKILL.md)
TikTok
This skill wraps 7 TikTok operations exposed by JustOneAPI. It is strongest for user Published Posts, post Details, user Profile, and post Comments. Expect common inputs such as cursor, awemeId, keyword, secUid, commentId.
When To Use It
- The user needs user Published Posts or post Details on TikTok.
- The task lines up with user Profile rather than a generic cross-platform workflow.
- The user can provide identifiers or filters such as
cursor,awemeId,keyword,secUid. - The user wants an exact API-backed answer instead of a freeform summary.
Representative Operations
getUserPostV1: User Published Posts — Get TikTok user Published Posts data, including video ID, description, and publish time, for user activity analysis and posting frequency tracking, influencer performance evaluation, and content trend monitoring for specific creatorsgetTiktokPostDetailV1: Post Details — Get TikTok post Details data, including video ID, author information, and description text, for content performance analysis and metadata extraction and influencer evaluation via specific post metricsgetTiktokUserDetailV1: User Profile — Get TikTok user Profile data, including nickname, unique ID, and avatar, for influencer profiling and audience analysis, account performance tracking and growth monitoring, and identifying verified status and official accountsgetPostCommentV1: Post Comments — Get TikTok post Comments data, including comment ID, user information, and text content, for sentiment analysis of the audience's reaction to specific content and engagement measurement via comment volume and quality
Request Pattern
- 7 operations are available in this skill.
- HTTP methods used here:
GET. - The most common non-token parameters are
cursor,awemeId,keyword,secUid,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:
getUserPostV1,getTiktokPostDetailV1,getTiktokUserDetailV1,getPostCommentV1. - 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 TikTok task the user asked for.
- Include the most decision-relevant fields from the selected endpoint before dumping raw JSON.
- When using
getUserPostV1, explain why the returned fields answer the user's question. - If the user gave filters such as
cursor,awemeId,keyword, 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 do exactly what it says: call JustOneAPI's TikTok endpoints. Before installing, consider these practical points: (1) The skill requires JUST_ONE_API_TOKEN — keep that token scoped to the minimum permissions and rotate it if possible. (2) The SKILL.md recommends passing the token as a --token CLI argument to the bundled node script; passing secrets on the command line can expose them via process listings or shell history on multi-user systems — prefer using environment variables or other secret-safe invocation methods. (3) The package includes an executable Node script (bin/run.mjs) that will run locally and make network calls to api.justoneapi.com; review that file if you need extra assurance. (4) The agent is allowed to call the skill autonomously (normal behavior) — if you do not want automated calls, disable the skill or restrict agent permissions. If you want higher assurance, confirm the bundled script's full source and that network calls are only to justoneapi.com and no additional endpoints.
功能分析
Type: OpenClaw Skill
Name: justoneapi-tiktok
Version: 1.0.8
The TikTok skill bundle is a standard API wrapper for JustOneAPI, providing operations to fetch TikTok posts, profiles, and comments. The execution logic in `bin/run.mjs` is straightforward, performing validated HTTP GET requests to the official domain `api.justoneapi.com` without any signs of obfuscation, shell injection, or unauthorized data exfiltration.
能力评估
Purpose & Capability
Name/description, declared requirements (JUST_ONE_API_TOKEN, node), the operations in generated/operations.*, and the bundled bin/run.mjs all consistently target JustOneAPI's TikTok endpoints (baseUrl: https://api.justoneapi.com). The requested token and node binary are appropriate and expected for this API wrapper.
Instruction Scope
SKILL.md instructs the agent to read generated/operations.md, ask for missing parameters, and run the bundled Node script with the token and params. That stays within the stated purpose. One implementation detail to note: the recommended invocation passes the API token via a --token CLI argument, which can expose the token in local process listings or shell history if run interactively; this is an operational risk (not a sign of misdirection) and should be considered before running on multi-user systems.
Install Mechanism
There is no install spec (instruction-only), but the skill includes an executable JavaScript file (bin/run.mjs) that will be executed by node at runtime. This is coherent with an instruction-wrapper skill, but it means bundled code will run locally and make network requests — review the script if you need extra assurance. The script's manifest references only justoneapi.com; no other download URLs or extract/install steps are present.
Credentials
Only one environment variable is required: JUST_ONE_API_TOKEN (declared as the primary credential). That is proportional to the stated purpose of making authenticated JustOneAPI calls. No unrelated credentials or config paths are requested. (See the instruction-scope note about CLI token exposure.)
Persistence & Privilege
The skill does not request always: true and does not ask to modify other skills or system-wide settings. disable-model-invocation is false (agent may invoke autonomously), which is standard for skills of this kind and is not by itself a coherence problem.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install justoneapi-tiktok - 安装完成后,直接呼叫该 Skill 的名称或使用
/justoneapi-tiktok触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.8
- Updated operation IDs: `getPostDetailV1` and `getUserDetailV1` are now named `getTiktokPostDetailV1` and `getTiktokUserDetailV1`.
- Documentation in SKILL.md and generated files updated to reflect the new operation names.
- All API usage instructions and examples now reference the updated operation IDs.
- No changes to endpoints or core functionality; update is limited to naming and documentation consistency.
v1.0.7
- Updated the "Environment" section with a new authentication link for the Just One API Usage Guide, including additional referral tracking parameters.
- No other content changes to operations or behavior.
v1.0.6
- Updated the Just One API Dashboard link to include referral and campaign tracking parameters.
- No behavioral or functional changes to the skill or its operations.
v1.0.5
justoneapi-tiktok 1.0.5
- Updated SKILL.md to clarify that JUST_ONE_API_TOKEN is used strictly for authenticated Just One API requests.
- No changes to code or functionality; documentation update only.
v1.0.4
- The SKILL.md documentation was updated with new guidance: keep the `JUST_ONE_API_TOKEN` private and do not paste it into chat messages, screenshots, or logs.
- No functionality or API changes; this update is documentation-only.
- All other usage and output instructions remain the same.
v1.0.3
- Added instructions on how to obtain a required API token from the Just One API Dashboard.
- Included links to the Just One API Dashboard and API usage guide for easier setup.
- No changes to usage patterns or API operations.
v1.0.2
rename
v1.0.0
Initial release of the TikTok API skill powered by JustOneAPI.
- Provides 7 TikTok operations, including user Published Posts, post Details, user Profile, and post Comments.
- Supports parameter-driven requests using common identifiers like `cursor`, `awemeId`, `secUid`, and `commentId`.
- Designed for direct API-backed answers focused on TikTok data analysis and influencer insights.
- Requires the `JUST_ONE_API_TOKEN` environment variable for operation.
- Includes step-by-step usage instructions and clear output guidelines for reliable results.
元数据
常见问题
TikTok API 是什么?
Analyze TikTok workflows with JustOneAPI, including user Published Posts, post Details, and user Profile across 7 operations. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 164 次。
如何安装 TikTok API?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install justoneapi-tiktok」即可一键安装,无需额外配置。
TikTok API 是免费的吗?
是的,TikTok API 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
TikTok API 支持哪些平台?
TikTok API 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 TikTok API?
由 justoneapi(@justoneapi)开发并维护,当前版本 v1.0.8。
推荐 Skills