openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking
YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: openclaw-youtube description: "YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking." homepage: https://openclaw.ai metadata: {"openclaw":{"emoji":"📺","requires":{"bins":["curl","python3"],"env":["AISA_API_KEY"]},"primaryEnv":"AISA_API_KEY"}} ---
YouTube SERP Scout for autonomous agents. Powered by AIsa.
One API key. Rank discovery. Content research. Competitor tracking.
"Find top-ranking videos about 'AI agents tutorial' to see what's working"
"Search for videos from competitor channels about 'machine learning'"
"What are the top YouTube videos about 'GPT-5' right now?"
"Find popular videos on 'autonomous driving' to understand audience interest"
"Search for channels creating content about 'crypto trading'"
export AISA_API_KEY="your-key"
---
# Search for videos
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=AI+agents+tutorial" \
-H "Authorization: Bearer $AISA_API_KEY"
# Search in specific country (US)
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=machine+learning&gl=us" \
-H "Authorization: Bearer $AISA_API_KEY"
# Search in Japan
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=AI&gl=jp&hl=ja" \
-H "Authorization: Bearer $AISA_API_KEY"
# Search with interface language
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=python+tutorial&hl=en" \
-H "Authorization: Bearer $AISA_API_KEY"
# Chinese interface
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=编程教程&hl=zh-CN&gl=cn" \
-H "Authorization: Bearer $AISA_API_KEY"
# Use sp parameter for pagination or advanced filters
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=AI&sp=<filter_token>" \
-H "Authorization: Bearer $AISA_API_KEY"
---
# Basic search
python3 {baseDir}/scripts/youtube_client.py search --query "AI agents tutorial"
# Search with country
python3 {baseDir}/scripts/youtube_client.py search --query "machine learning" --country us
# Search with language
python3 {baseDir}/scripts/youtube_client.py search --query "python tutorial" --lang en
# Full options
python3 {baseDir}/scripts/youtube_client.py search --query "GPT-5 news" --country us --lang en
# Competitor research
python3 {baseDir}/scripts/youtube_client.py search --query "OpenAI tutorial"
# Trend discovery
python3 {baseDir}/scripts/youtube_client.py search --query "AI trends 2025"
---
Find what content is ranking well to identify gaps in your strategy:
# Search for top videos in your niche
results = client.search("AI automation tutorial")
# Analyze titles, views, and channels to find opportunities
Track what competitors are publishing:
# Search for competitor brand + topic
results = client.search("OpenAI GPT tutorial")
# Monitor ranking changes over time
Discover what topics are trending:
# Search broad topics to see what's popular
results = client.search("artificial intelligence 2025")
# Extract common keywords from top-ranking titles
Understand what your target audience watches:
# Search in specific regions
results = client.search("coding tutorial", country="jp", lang="ja")
# Analyze regional content preferences
Analyze how videos rank for specific keywords:
# Track ranking positions for target keywords
keywords = ["AI tutorial", "machine learning basics", "Python AI"]
for kw in keywords:
results = client.search(kw)
# Record top 10 videos and their channels
---
| Endpoint | Method | Description | |----------|--------|-------------| | /youtube/search | GET | Search YouTube SERP |
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | engine | string | Yes | Must be youtube | | q | string | Yes | Search query | | gl | string | No | Country code (e.g., us, jp, uk, cn) | | hl | string | No | Interface language (e.g., en, ja, zh-CN) | | sp | string | No | YouTube filter token for pagination/filters |
{
"search_metadata": {
"id": "search_id",
"status": "Success",
"created_at": "2025-01-15T12:00:00Z",
"request_time_taken": 1.23,
"total_time_taken": 1.45
},
"search_results": [
{
"video_id": "abc123xyz",
"title": "Complete AI Agents Tutorial 2025",
"link": "https://www.youtube.com/watch?v=abc123xyz",
"channel_name": "AI Academy",
"channel_link": "https://www.youtube.com/@aiacademy",
"description": "Learn how to build AI agents from scratch...",
"views": "125K views",
"published_date": "2 weeks ago",
"duration": "45:30",
"thumbnail": "https://i.ytimg.com/vi/abc123xyz/hqdefault.jpg"
}
]
}
---
| Code | Country | |------|---------| | us | United States | | uk | United Kingdom | | jp | Japan | | cn | China | | de | Germany | | fr | France | | kr | South Korea | | in | India | | br | Brazil | | au | Australia |
| Code | Language | |------|----------| | en | English | | ja | Japanese | | zh-CN | Chinese (Simplified) | | zh-TW | Chinese (Traditional) | | ko | Korean | | de | German | | fr | French | | es | Spanish | | pt | Portuguese | | ru | Russian |
---
| API | Cost | |-----|------| | YouTube search | ~$0.002 |
Every response includes usage.cost and usage.credits_remaining.
---
export AISA_API_KEY="your-key"See API Reference for complete endpoint documentation.
安装 YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking 后,可以对 AI 说这些话来触发它
Help me get started with YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking
Explains what YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking does, walks through the setup, and runs a quick demo based on your current project
Use YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking to youTube SERP Scout for agents
Invokes YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking with the right parameters and returns the result directly in the conversation
What can I do with YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking in my data & analytics workflow?
将技能文件夹放到 ~/.claude/skills/openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking/ 目录(个人级,所有项目可用),或 .claude/skills/openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking/(项目级)。重启 AI 客户端后,用 /openclaw-aisa-youtube-search-serp-video-channels-trends-content-tracking 主动调用,或让 AI 根据上下文自动发现并使用。
YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking 可免费安装使用。请查阅仓库了解许可证信息。
Lists the top use cases for YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking, with example commands for each scenario
Automate my data & analytics tasks using YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking
Identifies repetitive steps in your workflow and sets up YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking to handle them automatically
YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking.
YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。