youtube

Installation
SKILL.md

YouTube

Search videos, get channel stats, and manage playlists via the YouTube Data API v3.

Environment Variables

  • GOOGLE_ACCESS_TOKEN - OAuth 2.0 access token with YouTube scope

Search videos

curl -s -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
  "https://www.googleapis.com/youtube/v3/search?part=snippet&type=video&q=SEARCH_QUERY&maxResults=5" | jq '.items[] | {videoId: .id.videoId, title: .snippet.title, channel: .snippet.channelTitle}'

Get video details

curl -s -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
1
First Seen
Mar 1, 2026