Can search and get YouTuber information
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install creatordb-youtube-v3或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install creatordb-youtube-v3⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/creatordb-youtube-v3/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: creatordb-youtube-v3 description: Can search and get YouTuber information homepage: https://www.creatordb.app metadata: {"moltbot":{"emoji":"🐽","requires":{"bins":["curl"],"env":["CREATORDB_API_KEY"]},"primaryEnv":"CREATORDB_API_KEY","install":[]}} ---
Search and retrieve YouTuber information including subscribers, growth stats, pricing estimates, and more.
curl --request POST \
--url https://apiv3.creatordb.app/youtube/search \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "api-key: $CREATORDB_API_KEY" \
--data '{
"filters": [
{
"filterName": "displayName",
"op": "=",
"value": "MrBeast",
"isFuzzySearch": true
}
],
"desc": true,
"sortBy": "totalSubscribers",
"pageSize": 5,
"offset": 0
}'
Search Response:
{
"data": {
"creatorList": [
{
"displayName": "YouTube",
"uniqueId": "@youtube",
"channelId": "UCBR8-60-B28hp2BmDPdntcQ",
"avatarUrl": "https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj",
"totalSubscribers": 13900000
}
],
"hasNextPage": true,
"nextOffset": 100
},
"quotaUsed": 1,
"quotaUsedTotal": 241,
"remainingQuota": 99759,
"traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
"timestamp": 1750732453635,
"errorCode": "",
"errorDescription": "",
"success": true
}
curl --request GET \
--url 'https://apiv3.creatordb.app/youtube/profile?channelId=UCBR8-60-B28hp2BmDPdntcQ' \
--header 'Accept: application/json' \
--header "api-key: $CREATORDB_API_KEY"
Profile Response:
{
"data": {
"channelId": "UCBR8-60-B28hp2BmDPdntcQ",
"uniqueId": "@youtube",
"displayName": "YouTube",
"categoryBreakdown": [
{
"category": "Gaming",
"share": 0.3241
}
],
"avatarUrl": "https://yt3.googleusercontent.com/7cF22TRiceqQr2Cro_X4uhRVnwCdOa2HXiwdBGPnUEqJDuCyr2CykDfDw2rCWjbjaHEdTMUC=s900-c-k-c0x00ffffff-no-rj",
"bio": "The Most Botted Channel EVER",
"isVerified": true,
"hasSponsors": true,
"hasMemberOnlyContents": true,
"country": "TWN",
"mainLanguage": "zht",
"languages": [
"zht",
"eng"
],
"secondLanguage": "eng",
"totalContents": 399,
"totalSubscribers": 13900000,
"subscriberGrowth": {
"g7": 0.1234,
"g30": 0.2345,
"g90": 0.3456
},
"hashtags": [
{
"name": "#starrailsimulator",
"contentCount": 250
}
],
"topics": [
"freegames_Gaming"
],
"niches": [
"roblox_Gaming"
],
"otherLinks": [
{
"title": "Instagram",
"url": "https://www.instagram.com/instagram"
}
],
"lastPublishTime": 1755142212000,
"relatedCreators": [
"UCBR8-60-B28hp2BmDPdntcQ",
"UC4PooiX37Pld1T8J5SYT-SQ"
],
"videoPrice": {
"cpmLow": 5.5,
"cpmRaw": 8.2,
"cpmHigh": 12,
"priceLow": 1000,
"priceRaw": 1500,
"priceHigh": 2200
},
"shortsPrice": {
"cpmLow": 3,
"cpmRaw": 5,
"cpmHigh": 8,
"priceLow": 500,
"priceRaw": 750,
"priceHigh": 1100
},
"lastDbUpdateTime": 1753179002000
},
"quotaUsed": 1,
"quotaUsedTotal": 241,
"remainingQuota": 99759,
"traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
"timestamp": 1750732453635,
"errorCode": "",
"errorDescription": "",
"success": true
}
curl --request GET \
--url 'https://apiv3.creatordb.app/youtube/performance?channelId=UCBR8-60-B28hp2BmDPdntcQ' \
--header 'Accept: application/json' \
--header 'api-key: $CREATORDB_API_KEY'
Response
{
"data": {
"contentCountByDays": {
"7d": 1,
"30d": 2,
"90d": 2
},
"ranking": {
"totalSubscribers": {
"global": 0.9912,
"country": 0.9986,
"language": 0.9764
},
"avgEngagementRate": {
"global": 0.9912,
"country": 0.9986,
"language": 0.9764
}
},
"videosPerformanceRecent": {
"likes": {
"all": 2944445,
"avg": 100,
"median": 48,
"min": 20,
"max": 149
},
"comments": {
"all": 2944445,
"avg": 100,
"median": 48,
"min": 20,
"max": 149
},
"views": {
"all": 3599,
"avg": 100,
"median": 48,
"min": 20,
"max": 149,
"percentile25": 35,
"percentile75": 85,
"iqr": 50
},
"length": {
"avg": 180
},
"engagement": {
"avgEngagementRate": 0.5201,
"likesPerSubscriber": 0.1111,
"commentsPerSubscriber": 0.1111,
"viewsPerSubscriber": 0.1111,
"engagementConsistency": {
"cv": 0.1001,
"medianVsMean": 0.9001,
"topBottomRatio": 1.2001,
"consistencyScore": 63,
"consistencyLevel": "high"
}
}
},
"shortsPerformanceRecent": {
"likes": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988
},
"comments": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988
},
"views": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988,
"percentile25": 80,
"percentile75": 250,
"iqr": 170
},
"length": {
"avg": 180
},
"engagement": {
"avgEngagementRate": 0.5201,
"likesPerSubscriber": 0.1111,
"commentsPerSubscriber": 0.1111,
"viewsPerSubscriber": 0.1111,
"engagementConsistency": {
"cv": 0.1001,
"medianVsMean": 0.9001,
"topBottomRatio": 1.2001,
"consistencyScore": 63,
"consistencyLevel": "high"
}
}
},
"videosPerformanceAll": {
"likes": {
"all": 2944445,
"avg": 100,
"median": 48,
"min": 20,
"max": 149
},
"comments": {
"all": 2944445,
"avg": 100,
"median": 48,
"min": 20,
"max": 149
},
"views": {
"all": 3599,
"avg": 100,
"median": 48,
"min": 20,
"max": 149,
"percentile25": 35,
"percentile75": 85,
"iqr": 50
},
"length": {
"avg": 180
},
"engagement": {
"avgEngagementRate": 0.5201,
"likesPerSubscriber": 0.1111,
"commentsPerSubscriber": 0.1111,
"viewsPerSubscriber": 0.1111,
"engagementConsistency": {
"cv": 0.1001,
"medianVsMean": 0.9001,
"topBottomRatio": 1.2001,
"consistencyScore": 63,
"consistencyLevel": "high"
}
}
},
"shortsPerformanceAll": {
"likes": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988
},
"comments": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988
},
"views": {
"all": 2459,
"avg": 100,
"median": 120,
"min": 50,
"max": 988,
"percentile25": 80,
"percentile75": 250,
"iqr": 170
},
"length": {
"avg": 180
},
"engagement": {
"avgEngagementRate": 0.5201,
"likesPerSubscriber": 0.1111,
"commentsPerSubscriber": 0.1111,
"viewsPerSubscriber": 0.1111,
"engagementConsistency": {
"cv": 0.1001,
"medianVsMean": 0.9001,
"topBottomRatio": 1.2001,
"consistencyScore": 63,
"consistencyLevel": "high"
}
}
...安装 Youtube Reporter by CreatorDB 后,可以对 AI 说这些话来触发它
Help me get started with Youtube Reporter by CreatorDB
Explains what Youtube Reporter by CreatorDB does, walks through the setup, and runs a quick demo based on your current project
Use Youtube Reporter by CreatorDB to can search and get YouTuber information
Invokes Youtube Reporter by CreatorDB with the right parameters and returns the result directly in the conversation
What can I do with Youtube Reporter by CreatorDB in my developer & devops workflow?
Lists the top use cases for Youtube Reporter by CreatorDB, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/creatordb-youtube-v3/ 目录(个人级,所有项目可用),或 .claude/skills/creatordb-youtube-v3/(项目级)。重启 AI 客户端后,用 /creatordb-youtube-v3 主动调用,或让 AI 根据上下文自动发现并使用。
Youtube Reporter by CreatorDB 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Youtube Reporter by CreatorDB 可免费安装使用。请查阅仓库了解许可证信息。
Can search and get YouTuber information
Youtube Reporter by CreatorDB 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Youtube Reporter by CreatorDB
Identifies repetitive steps in your workflow and sets up Youtube Reporter by CreatorDB to handle them automatically