Fast, lightweight, and easy-to-use YouTube Downloader API.
- 🎥 Get YouTube video information
- 🎵 Download audio
- 📺 Download video
- ⚡ Fast JSON responses
- 🔗 Supports YouTube videos, Shorts, and youtu.be links
- 🌐 REST API
- 📦 Easy to integrate
curl -X POST "https://api.ytxy.work.gd/api/info" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"url": "https://youtu.be/dQw4w9WgXcQ"
}'{
"success": true,
"title": "Example Video",
"duration": 210,
"thumbnail": "...",
"author": "...",
"downloads": {
"audio": "...",
"video": "..."
}
}All requests require an API key.
Include your API key in the request header:
X-API-Key: YOUR_API_KEYRequests without a valid API key will be rejected.
| Code | Description |
|---|---|
| 200 | Success |
| 400 | Invalid Request |
| 404 | Video Not Found |
| 500 | Internal Server Error |
- Node.js
- Express
- REST API
API Base URL:
This project is intended for educational and personal use only. Users are responsible for complying with YouTube's Terms of Service and applicable copyright laws.0
MIT License
Made with ❤️ by SyntaxOps