Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Download YouTube videos by URL in various resolutions using a pay-per-use API with credit-based authentication and no charge on failed downloads.
Download YouTube videos by URL in various resolutions using a pay-per-use API with credit-based authentication and no charge on failed downloads.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
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. Summarize what changed and any follow-up checks I should run.
Download any YouTube video in various resolutions with a simple command. Supports 360p, 480p, 720p, 1080p, best quality, and audio-only extraction.
Just tell OpenClaw: "帮我安装这个 skill:https://clawhub.ai/XJouska/u2-downloader" OpenClaw will ask you for an API Key. Follow these steps to get one: Go to https://u2foru.site and register an account Navigate to the API Keys page (or visit https://u2foru.site/?page=apikeys) Click Generate to create your API Key (format: sk-yt-xxxxx) Copy the key and paste it to OpenClaw when prompted That's it! You're ready to use the skill.
Once installed, just tell OpenClaw what you want. For example: "帮我下载这个 YouTube 视频:https://youtube.com/watch?v=dQw4w9WgXcQ" "Download this video in 1080p: https://youtube.com/watch?v=xxxxx" Supported resolutions: 360p, 480p, 720p (default), 1080p, best, audio-only.
All API calls require an API Key in the Authorization header: Authorization: Bearer sk-yt-xxxxx Get your API Key at: https://u2foru.site/?page=apikeys
Download a YouTube video. Request: { "youtube_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "resolution": "720" } Parameters: youtube_url (required): YouTube video URL resolution (optional): "360", "480", "720", "1080", "best", "audio". Default: "720" Response (success): { "success": true, "download_url": "https://oss-bucket.aliyuncs.com/skill/abc123/video.mp4", "video_title": "Video Title", "video_duration": 212, "file_size": 52428800, "resolution": "720", "processing_time": 45.2 }
Check account status. Response: { "username": "user123" }
Health check (no authentication required). Response: { "status": "healthy", "service": "YouTube Video Downloader Skill", "version": "1.0.0" }
CodeMeaning200Success401Invalid or missing API Key400Invalid request (bad URL, etc.)500Server error
# Download a video curl -X POST https://u2foru.site/api/v1/skill/download \ -H "Authorization: Bearer sk-yt-xxxxx" \ -H "Content-Type: application/json" \ -d '{"youtube_url": "https://youtube.com/watch?v=dQw4w9WgXcQ", "resolution": "720"}'
import requests API_KEY = "sk-yt-xxxxx" BASE_URL = "https://u2foru.site" # Download resp = requests.post( f"{BASE_URL}/api/v1/skill/download", headers={"Authorization": f"Bearer {API_KEY}"}, json={"youtube_url": "https://youtube.com/watch?v=dQw4w9WgXcQ", "resolution": "720"} ) data = resp.json() if data["success"]: print(f"Download URL: {data['download_url']}")
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.