Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

tiktok-scraper抖音刷屏

Agent Skill

tiktok-scraper 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,081

周安装

476

GitHub Stars

公开资料未说明

下载量

3,884
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tiktok-scraper(抖音刷屏)
来源仓库:https://github.com/simonbalfe/tiktok-scraper
安装命令:
openclaw skills install tiktok-scraper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tiktok-scraper

简介

通过CreatorCrawl API获取实时创作者数据。

  • 支持个人资料、评论、标签趋势检索。
  • 发现潜力内容与热门话题热点追踪。tiktok-scraper 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖外部付费接口可能存在调用额度限制。
  • 不得用于恶意爬取或违反社区准则的数据收集。

SKILL.md

name
creatorcrawl
description
Access live TikTok data via the CreatorCrawl API. Look up creator profiles, search videos, pull comments and transcripts, track trending hashtags, discover popular songs. Use whenever someone asks about TikTok creators, videos, trends, or social media research.
version
1.0.0
user-invocable
true
metadata
{"openclaw":{"requires":{"env":["CREATORCRAWL_API_KEY"],"bins":["curl"]},"primaryEnv":"CREATORCRAWL_API_KEY","emoji":"📱","homepage":"https://creatorcrawl.com"}}

CreatorCrawl TikTok Data

Access live TikTok data: creator profiles, video analytics, comments, transcripts, search, trending content, and songs. 19 endpoints, structured JSON responses, no scraping required.

Setup

Get a free API key at https://creatorcrawl.com (250 free credits, no card required). Set the CREATORCRAWL_API_KEY environment variable.

How to call the API

Use curl for all requests. Authenticate with the x-api-key header. Base URL: https://creatorcrawl.com.

curl -s -H "x-api-key: $CREATORCRAWL_API_KEY" \
  "https://creatorcrawl.com/api/tiktok/profile?handle=charlidamelio"

All responses are JSON. Errors return { "success": false, "error": "message" } with status 400 (bad params), 401 (unauthorized), 402 (no credits), or 502 (upstream).

Endpoints

Profiles

GET /api/tiktok/profile — Get a creator's profile, stats, and recent videos.

ParamRequiredDescription
handleyesTikTok handle (without @)

Returns: user info (id, uniqueId, nickname, signature, verified), stats (followerCount, followingCount, heartCount, videoCount), and recent videos.

GET /api/tiktok/profile/videos — Get a creator's videos with pagination and sorting.

ParamRequiredDescription
handleyesTikTok handle
sort_bynolatest or popular
max_cursornoPagination cursor from previous response
regionno2-letter country code

Returns: aweme_list with statistics (play_count, digg_count, comment_count, share_count), author info, music info. Paginate with max_cursor.

GET /api/tiktok/user/followers — Get a creator's followers (paginated).

ParamRequiredDescription
handleyes (or user_id)TikTok handle
user_idyes (or handle)User ID (faster)
min_timenoPagination cursor

GET /api/tiktok/user/following — Get accounts a creator follows.

ParamRequiredDescription
handleyesTikTok handle
min_timenoPagination cursor

GET /api/tiktok/user/live — Check if a creator is live streaming.

ParamRequiredDescription
handleyesTikTok handle

Videos

GET /api/tiktok/video — Get full video details.

ParamRequiredDescription
urlyesTikTok video URL
get_transcriptnotrue to include transcript
regionno2-letter country code

Returns: aweme_detail with statistics, author, music, video dimensions, hashtags, and optional transcript.

GET /api/tiktok/video/comments — Get video comments (paginated).

ParamRequiredDescription
urlyesTikTok video URL
cursornoPagination cursor

Returns: comments with text, digg_count, reply_comment_total, nested replies.

GET /api/tiktok/video/transcript — Get video transcript text.

ParamRequiredDescription
urlyesTikTok video URL
languageno2-letter language code (en, es, fr)
use_ai_as_fallbacknotrue for AI transcription (under 2 min videos)

Search

GET /api/tiktok/search/keyword — Search videos by keyword.

ParamRequiredDescription
queryyesSearch keyword
date_postednoyesterday, this-week, this-month, last-3-months, last-6-months, all-time
sort_bynorelevance, most-liked, date-posted
regionno2-letter country code
cursornoPagination cursor

GET /api/tiktok/search/hashtag — Search videos by hashtag.

ParamRequiredDescription
hashtagyesHashtag without #
regionno2-letter country code
cursornoPagination cursor

GET /api/tiktok/search/users — Search TikTok users.

ParamRequiredDescription
queryyesSearch query
cursornoPagination cursor

GET /api/tiktok/search/top — Top search results (videos + photo carousels).

ParamRequiredDescription
queryyesSearch keyword
publish_timenoyesterday, this-week, this-month, last-3-months, last-6-months, all-time
sort_bynorelevance, most-liked, date-posted
regionno2-letter country code
cursornoPagination cursor

Trending

GET /api/tiktok/get-trending-feed — Get trending feed for a region.

ParamRequiredDescription
regionyes2-letter country code (US, GB, FR, etc.)

GET /api/tiktok/videos/popular — Get popular videos across TikTok.

ParamRequiredDescription
periodno7 or 30 (days)
pagenoPage number
orderBynolike, hot, comment, repost
countryCodenoCountry code

GET /api/tiktok/creators/popular — Discover popular creators with filters.

ParamRequiredDescription
pagenoPage number
sortBynoengagement, follower, avg_views
followerCountno10K-100K, 100K-1M, 1M-10M, 10M+
creatorCountrynoCreator's country code
audienceCountrynoAudience country code

GET /api/tiktok/hashtags/popular — Get trending hashtags.

ParamRequiredDescription
periodno7, 30, or 120 (days)
pagenoPage number
countryCodenoCountry code
newOnBoardnoOnly newly trending
industrynoe.g. beauty-and-personal-care, food-and-beverage, tech-and-electronics

Songs

GET /api/tiktok/song — Get song details by clip ID.

ParamRequiredDescription
clipIdyesClip ID (not song ID)

GET /api/tiktok/song/videos — Get videos using a specific song.

ParamRequiredDescription
clipIdyesClip ID from song URL
cursornoPagination cursor

GET /api/tiktok/songs/popular — Get popular/surging songs (can take up to 30s).

ParamRequiredDescription
pagenoPage number
timePeriodno7, 30, or 130 (days)
rankTypenopopular or surging
newOnBoardnoNew to top 100
commercialMusicnoApproved for business use
countryCodenoCountry code

Pagination

Paginated endpoints return a cursor field (cursor, min_time, or max_cursor depending on the endpoint). Pass it back as a query param for the next page. Stop when the cursor is empty/null or no more items are returned.

Pricing

1 credit per API call. Free signup gives 250 credits. Paid packs: Starter ($29/5k credits), Pro ($99/20k credits), Scale ($299/100k credits). Credits never expire, no rate limits.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.25%
按下载量换算2,884

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills