From UnifAPI
Reads public YouTube data through UnifAPI — channel/video/playlist metadata, counts, comments, captions, community posts, trending, and search. Use for creator vetting, competitor analysis, or content demand research.
How this skill is triggered — by the user, by Claude, or both
Slash command
/unifapi:youtubeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The deterministic read path for public **YouTube** data through UnifAPI. This is a
The deterministic read path for public YouTube data through UnifAPI. This is a
Data Skill: it does not run a marketing job on its own — it names the
concrete youtube/... operations, response shapes, and the real coverage limits
so any channel- or content-first workflow (creator vetting, competitor
reception, content demand) reads from one known recipe instead of rediscovering
the surface each time.
Read-only — eyes, not hands. It researches public YouTube data and returns cited records; it never uploads, comments, or subscribes, and UnifAPI never holds YouTube credentials.
unifapi skill for live evidenceConnect once through the shared unifapi skill (OAuth MCP), then call the
operations below. Channels are keyed by {channel_id} and videos by
{video_id} — resolve a handle or URL to a channel id first (see Gotchas).
Keep any billing metadata so the output can state record cost.
Single-entity endpoints return the object in data:
{
"request_id": "unif_...",
"data": {},
"billing": { "records_charged": 1, "balance_remaining": 99 }
}
List endpoints return an array in data plus pagination:
{
"request_id": "unif_...",
"data": [],
"pagination": { "has_more": false, "next_cursor": null },
"billing": { "records_charged": 1 }
}
When pagination.has_more is true, pass pagination.next_cursor as the next
request's cursor. Always preserve billing when reporting cost.
| Need | Operation |
|---|---|
| Search videos | youtube/search (?q=..., optional sort_by/upload_date/duration/region/language) |
| Search channels / playlists | youtube/search/channels · youtube/search/playlists (?q=...) |
| Trending | youtube/trending (optional type = now/music/gaming/movies) |
| Hashtag videos | youtube/hashtags/{tag}/videos |
| Resolve handle/URL → id | youtube/resolve/channel-id (?url=...) |
| Channel page | youtube/channels/{channel_id} |
| Channel videos / shorts | youtube/channels/{channel_id}/videos · .../shorts |
| Channel playlists | youtube/channels/{channel_id}/playlists |
| Channel community posts | youtube/channels/{channel_id}/community |
| Search within a channel | youtube/channels/{channel_id}/search (?q=...) |
| Video metadata | youtube/videos/{video_id} |
| Related videos | youtube/videos/{video_id}/related |
| Video comments | youtube/videos/{video_id}/comments (optional sort_by = top/newest) |
| Video captions / transcript | youtube/videos/{video_id}/captions |
| Playlist page / videos | youtube/playlists/{playlist_id} · .../videos |
Need a field not listed here? Use the unifapi skill's get_operation to read
the exact schema before calling — but pick the operation from this table, don't
discover blind.
The deterministic recipes. Pick the one that matches the job; each names exactly what to call.
youtube/search?q=... for who owns a topic, or
youtube/trending for what's surging now.youtube/resolve/channel-id?url=... to get the
channel_id, then youtube/channels/{channel_id} for subscriber_count,
video_count, and view_count.youtube/channels/{channel_id}/videos (and
.../shorts); each video's view_count is the demand signal. Page via
next_cursor. youtube/channels/{channel_id}/playlists maps how the catalog
is organized; youtube/channels/{channel_id}/community reads announcements and
engagement outside videos; youtube/channels/{channel_id}/search?q=... finds a
creator's coverage of one topic without scanning the whole catalog.youtube/videos/{video_id} for
metadata (now including like_count, category, published_at,
has_captions), then youtube/videos/{video_id}/related to map adjacent
demand and competing content.youtube/videos/{video_id}/comments
(sort_by top/newest) for what the audience says — raw comment text, like and
reply counts; any sentiment or FAQ grouping is yours to compute, the API
returns text only. Call youtube/videos/{video_id}/captions for caption tracks
(timed-text url per language) to read or analyze the transcript.youtube/playlists/{playlist_id} then
.../videos to ingest a curated series in order; youtube/hashtags/{tag}/videos
tracks a campaign or trend across creators.view_count across the search and related
results for a topic; title, description, and keywords show how the topic
is framed.billing.records_charged (or estimate when billing metadata is
absent).YouTubeChannel — keyed by {channel_id}. subscriber_count,
video_count, view_count, handle, keywords, links, country,
created_at. is_verified is not populated by the upstream and is always
false — don't report verification you can't read.YouTubeVideo — keyed by {video_id}. view_count, like_count
(best-effort; 0 when the creator hides it), category, channel_id,
author, duration_seconds, keywords, published_at, has_captions,
is_live, is_private.YouTubeVideoPreview — search/related/list rows: adds published_time.
category is part of the shape but empty on list rows (only YouTubeVideo
detail carries it).YouTubeComment — text, author, author_channel_id, like_count,
reply_count, published_time, is_verified, is_creator. Text only — no
sentiment field.YouTubeCaptions — video_id, tracks[] (language_code, timed-text
url, is_translatable), translation_languages[]. Single object, billed as
one record. Track urls are time-limited.YouTubePlaylist / YouTubePlaylistPreview — playlist title,
channel_id, author, video_count (detail adds view_count,
last_updated; preview adds first_video_id).YouTubeChannelPreview — search-channels rows: title, handle,
description, subscriber_count, video_count.YouTubeCommunityPost — text, author, vote_count, reply_count,
attachment_type, image_url.youtube/resolve/channel-id?url=...
resolves a handle or URL to a {channel_id} — call it before any
youtube/channels/{channel_id}/... call. There is no video- or playlist-id
resolver; pass a known {video_id} / {playlist_id} (parse it from the URL
yourself).youtube/videos/{video_id}/comments returns comment
text plus like/reply counts — no sentiment, no FAQ grouping. Compute those
yourself from the text; don't claim a sentiment field the API doesn't return.like_count is best-effort. YouTubeVideo.like_count is 0 when the
creator hides likes — treat 0 as "hidden or none," not authoritative.is_verified is always false for channels (upstream doesn't expose it) —
don't report channel verification.tracks: []; check before promising a transcript. Track urls are time-limited.#
(youtube/hashtags/lofi/videos).billing.truncated_due_to_balance — when true the page is partial.Return the records the calling workflow needs, each cited to its video or
channel, plus a one-line cost note (records_charged). When this skill is used
directly, a compact demand brief is the default:
**{Channel}** — {subscribers} subscribers, {videos} videos, {totalViews} views. Top videos for {topic}: {title} ({views} views). Related/competitors: {channels}. Evidence: {URLs}. Records: ~{N}.
get_operation.npx claudepluginhub unifapi-agent/agents --plugin unifapiResearches YouTube topics, analyzes competitor videos, deconstructs viral content, and queries the YouTube Data API v3 for stats, search, and channel info.
Searches YouTube videos, retrieves video/channel/playlist details, comments, and subtitles via Data API v3. Supports filtering/sorting by time/views/rating.
Searches YouTube for videos and channels, analyzes video transcripts for highlights, explores channels, and researches topics. Use for YouTube-related tasks like finding coding tutorials.