# Send AIsa Youtube Search to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "aisa-youtube-search",
    "name": "AIsa Youtube Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/AIsaPay/aisa-youtube-search",
    "canonicalUrl": "https://clawhub.ai/AIsaPay/aisa-youtube-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/aisa-youtube-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aisa-youtube-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/youtube_client.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/aisa-youtube-search"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/aisa-youtube-search",
    "downloadUrl": "https://openagent3.xyz/downloads/aisa-youtube-search",
    "agentUrl": "https://openagent3.xyz/skills/aisa-youtube-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aisa-youtube-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aisa-youtube-search/agent.md"
  }
}
```
## Documentation

### OpenClaw YouTube 📺

YouTube SERP Scout for autonomous agents. Powered by AIsa.

One API key. Rank discovery. Content research. Competitor tracking.

### Content Research

"Find top-ranking videos about 'AI agents tutorial' to see what's working"

### Competitor Tracking

"Search for videos from competitor channels about 'machine learning'"

### Trend Discovery

"What are the top YouTube videos about 'GPT-5' right now?"

### Topic Analysis

"Find popular videos on 'autonomous driving' to understand audience interest"

### Channel Discovery

"Search for channels creating content about 'crypto trading'"

### Quick Start

export AISA_API_KEY="your-key"

### Basic YouTube Search

# 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 with Country Filter

# 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 Language Filter

# 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"

### Pagination with Filter Token

# 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"

### Python Client

# 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"

### 1. Content Gap Analysis

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

### 2. Competitor Monitoring

Track what competitors are publishing:

# Search for competitor brand + topic
results = client.search("OpenAI GPT tutorial")
# Monitor ranking changes over time

### 3. Keyword Research

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

### 4. Audience Research

Understand what your target audience watches:

# Search in specific regions
results = client.search("coding tutorial", country="jp", lang="ja")
# Analyze regional content preferences

### 5. SEO Analysis

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

### API Endpoint Reference

EndpointMethodDescription/youtube/searchGETSearch YouTube SERP

### Request Parameters

ParameterTypeRequiredDescriptionenginestringYesMust be youtubeqstringYesSearch queryglstringNoCountry code (e.g., us, jp, uk, cn)hlstringNoInterface language (e.g., en, ja, zh-CN)spstringNoYouTube filter token for pagination/filters

### Response Format

{
  "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"
    }
  ]
}

### Country Codes (gl)

CodeCountryusUnited StatesukUnited KingdomjpJapancnChinadeGermanyfrFrancekrSouth KoreainIndiabrBrazilauAustralia

### Language Codes (hl)

CodeLanguageenEnglishjaJapanesezh-CNChinese (Simplified)zh-TWChinese (Traditional)koKoreandeGermanfrFrenchesSpanishptPortugueseruRussian

### Pricing

APICostYouTube search~$0.002

Every response includes usage.cost and usage.credits_remaining.

### Get Started

Sign up at aisa.one
Get your API key
Add credits (pay-as-you-go)
Set environment variable: export AISA_API_KEY="your-key"

### Full API Reference

See API Reference for complete endpoint documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AIsaPay
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aisa-youtube-search)
- [Send to Agent page](https://openagent3.xyz/skills/aisa-youtube-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/aisa-youtube-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aisa-youtube-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/aisa-youtube-search)