Install
openclaw skills install @tubeagentkit/youtube-transcriptUse when the user wants a YouTube video's transcript fetched, wants to summarize/analyze/quote a YouTube video by its spoken content, wants to search YouTube (globally or a channel handle's videos), wants a channel handle resolved to its channel ID, or wants the videos in a YouTube playlist. Calls the getyoutubetranscript.com public API - requires an API key (free tier available, no card required).
openclaw skills install @tubeagentkit/youtube-transcriptFetches transcripts, search results, and playlist/channel data from YouTube via the getyoutubetranscript.com REST API, so you can summarize, quote, search, or analyze a video's actual spoken content without the user having to copy-paste it in by hand.
Scope: this skill only makes outbound HTTPS curl requests to
getyoutubetranscript.com endpoints listed below (plus, during first-time
setup, an email address the user explicitly provides - see below). It runs no
other shell commands and installs nothing.
Every call needs an API key. Look for one, in this order:
YOUTUBE_TRANSCRIPT_API_KEY environment variable.If neither exists, you can get one for the user right now instead of just
linking to the dashboard - see Getting a key automatically below. Once you
have a key (however you got it), prefer running the rest of this session with
it set as YOUTUBE_TRANSCRIPT_API_KEY so you don't have to ask again.
This is a two-step email+code flow, no password and no browser required.
Ask the user for explicit consent before sending anything, naming the destination service: "I don't have an API key yet. If you give me an email address, I'll send it to getyoutubetranscript.com to create a free account (100 credits, no card required) and verify it with a 6-digit code. What email would you like to use?" Only proceed once they've given you an email in response to that - don't reuse an email already present in this conversation for an unrelated purpose without asking.
Send the code:
curl -s -X POST "https://getyoutubetranscript.com/api/v1/signup" \
-H "Content-Type: application/json" \
-d '{"email": "the_user_email"}'
A {"success": true, ...} response means the code was sent - tell the user
to check their inbox (including spam) and give you the 6-digit code. The
code expires in 10 minutes; a disposable/throwaway email address will be
rejected with a clear error.
Once they give you the code, verify it:
curl -s -X POST "https://getyoutubetranscript.com/api/v1/signup/verify" \
-H "Content-Type: application/json" \
-d '{"email": "the_user_email", "otp": "123456"}'
Success looks like {"success": true, "api_key": "sk_live_..."}. This
api_key is shown ONCE. Ask the user before persisting it anywhere beyond
the current session (e.g. "Want me to save this to your shell profile so
you don't need to re-enter it next time?") - don't write it to a shell
profile or any other persistent file without that confirmation. For the
rest of the current session, holding it as the YOUTUBE_TRANSCRIPT_API_KEY
environment variable in memory is enough to make every request below work.
If your tool's own output redacts the key so you can't see it to store it,
that redaction is a safety feature working as intended - don't try to
route around it (e.g. by writing the raw response to a temp file). Instead
tell the user their key was created and point them to
https://getyoutubetranscript.com/dashboard to copy it directly.
A wrong or expired code returns a 400 with a message you should relay to
the user verbatim (e.g. "Invalid OTP") - ask them to check the code or
request a new one via step 2 rather than guessing at a fix.
If the user says they already have an account, skip this and send them to https://getyoutubetranscript.com/dashboard to grab an existing key instead of creating a new one.
Every response is metered: 1 credit per successful call (free tier included;
failed calls are never charged). If a call returns 402 PAYMENT_REQUIRED, tell
the user they're out of credits and link them to the dashboard to top up or
upgrade - don't retry the same call expecting a different result.
https://getyoutubetranscript.com/api/v1
Send the key as either header (both are accepted identically):
Authorization: Bearer <API_KEY>
# or
x-api-key: <API_KEY>
curl -s "https://getyoutubetranscript.com/api/v1/transcript?v=<VIDEO_ID_OR_URL>&language=en" \
-H "Authorization: Bearer $YOUTUBE_TRANSCRIPT_API_KEY"
v accepts a bare 11-char video ID OR any full YouTube URL (youtube.com/watch?v=...,
youtu.be/..., /shorts/...) - don't parse the URL yourself, just pass it through.language is optional and defaults to en only when the user hasn't said
otherwise - the example above uses en for illustration, not because
English should be forced. If the user asks for a specific language, pass
that instead of the default. Use the response's own error if a requested
language isn't available (see Errors below) rather than guessing which
languages exist.scripts/fetch_transcript.sh wraps this exact call if you'd
rather invoke a script than hand-build the curl command.Successful response:
{
"success": true,
"data": {
"video_id": "jNQXAC9IVRw",
"language_code": "en",
"title": "Me at the zoo",
"author_name": "jawed",
"author_url": "https://www.youtube.com/channel/UC4Qob...",
"thumbnail_url": "https://...",
"transcript": "All right, so here we are...",
"word_count": 39
}
}
transcript is the full spoken text as one plain string - there is no
per-line timestamp breakdown in this API. If the user specifically needs
timestamps, tell them that's not something this endpoint provides rather than
inventing fake timestamps.
Same base URL, auth, and error shape as above.
Search YouTube - GET /search?q=<query>&country=us&language=en&type=video&limit=20
(1 credit/page). type is video (default) or channel - restricts
results to one type (video results in data.video_results, channel results
in data.channel_results), it does not mix both in one call. Add
page_token from a previous response's data.continuation_token to fetch
the next page (works for both types). The bundled scripts/fetch_search.sh
wraps this call.
Resolve a channel handle to its channel ID - GET /resolve?handle=@mkbhd
(free, 0 credits). Accepts a channel ID, a channel URL, or a bare @handle.
The bundled scripts/resolve_channel.sh wraps this call.
Channel info + latest videos - GET /channel/latest?channel=@mkbhd
(free, 0 credits). Full channel metadata (subscribers, description, avatar)
plus whatever "Latest Videos" the channel's home tab is currently showing -
not the complete upload history. For that, use channel/videos below. The
bundled scripts/fetch_channel_latest.sh wraps this call.
All of a channel's uploaded videos - GET /channel/videos?channel=@mkbhd (1 credit/page). Provide either channel
(first page) or continuation (1 credit/page too - it's still a real
scrape, not a free re-read). The response's data.continuation_token, when
non-null, is an opaque string - pass it back verbatim as continuation to
get the next page; never construct or decode it yourself. null means
there are no more pages. The bundled scripts/fetch_channel_videos.sh wraps
this call (pass "" as the first argument when using a continuation token -
see the script's own usage comment).
Search within a channel - GET /channel/search?channel=@mkbhd&q=iphone (1 credit/page). Same channel +
q for the first page, or continuation alone for subsequent pages -
identical opaque-token convention as channel/videos. The bundled
scripts/fetch_channel_search.sh wraps this call.
Playlist videos - GET /playlist?list=<playlist ID or URL> (1 credit/page).
Fully paginated: provide either list (first page) or continuation (from a
previous response's data.continuation_token - opaque, pass it back
verbatim, null means no more pages). The bundled scripts/fetch_playlist.sh
wraps this call.
Every error is JSON with a stable code you can branch on, plus a matching
HTTP status:
| Status | Code | Meaning |
|---|---|---|
| 400 | BAD_REQUEST / MISSING_URL / INVALID_URL | Missing or malformed parameter |
| 401 | MISSING_API_KEY / INVALID_API_KEY | No key provided, or it's invalid/revoked |
| 402 | PAYMENT_REQUIRED | Out of credits - direct the user to the dashboard, don't retry |
| 404 | VIDEO_UNAVAILABLE / TRANSCRIPT_NOT_FOUND / TRANSCRIPT_DISABLED | Video/resource doesn't exist, or has no transcript |
| 404 | LANGUAGE_NOT_AVAILABLE | The requested language isn't available for this video |
| 429 | RATE_LIMITED | Too many requests for the key's plan tier - back off, don't hammer it in a retry loop |
| 503 | UPSTREAM_UNAVAILABLE / UPSTREAM_TIMEOUT | Transient upstream issue - safe to retry once after a short delay |
Report the real message field to the user on any error rather than a generic
"something went wrong" - it's written to be end-user-readable already.
Full reference (all endpoints, request-limit tiers, pricing): https://getyoutubetranscript.com/docs