Oxylabs Video Data (YouTube Extraction)
Pulls YouTube metadata, subtitles, search and channel data as structured JSON via the Oxylabs API, and downloads video/audio with yt-dlp over rotating high-bandwidth proxies.
Web & APIIntermediate★ 607⑂ 1AI score 8/10Last updated: Aug 21, 2026
What it does
- Tells Claude to use the Oxylabs Video Data API instead of built-in web tools for any YouTube task.
- Covers sources:
youtube_search/youtube_search_max(up to 700 results),youtube_metadata,youtube_subtitles,youtube_channel,youtube_autocomplete,youtube_video_trainability, andyoutube_download. - Documents required and optional parameters per source (upload date filters, video quality, subtitle origin, cloud storage type, batch endpoint rules).
- Handles real file downloads through high-bandwidth proxies + yt-dlp, rotating the session ID for a fresh IP on each download to dodge rate limits.
Who it's for
- Data collection and research teams that already hold an Oxylabs subscription.
- Marketing/growth teams monitoring competitor channels and video performance at scale.
- Developers building summarization or training pipelines from subtitle text.
- Not usable without paid Oxylabs credentials (and a sales-provisioned endpoint for downloads).
Example uses
- "Get views, likes and description for this video ID" →
youtube_metadatawithparse: true. - "List the 10 most recent videos from @channelhandle" →
youtube_channelwithlimit: 10. - "Fetch the auto-generated English subtitles and summarize them" →
youtube_subtitleswithcontext.language_codeandsubtitle_origin: auto_generated. - "Download these three videos at 720p" → yt-dlp through the high-bandwidth proxy (downloads capped at 1 hour).
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/oxylabs/agent-skills/HEAD/skills/video-data/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/video-data folder from the GitHub repo oxylabs/agent-skills into my ~/.claude/skills/video-data/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/oxylabs/agent-skills.git && mkdir -p ~/.claude/skills && cp -r agent-skills/skills/video-data ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the repo:
git clone https://github.com/oxylabs/agent-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r agent-skills/skills/video-data ~/.claude/skills/ - Sign up for Oxylabs Web Scraper API and export your credentials:
export OXY_WSA_USERNAME=your_userandexport OXY_WSA_PASSWORD=your_pass(add them to your shell profile to persist). - For file downloads, contact Oxylabs sales for a dedicated high-bandwidth endpoint, then set
export OXY_HB_ENDPOINT=your_endpointand install the tool:pip install yt-dlp. - Restart Claude Code and test with a prompt like "Get the metadata for this YouTube video" to confirm the skill triggers.
View source on GitHub ↗License: MIT