Download ANY Video — 8 Platforms, Direct CDN
Pricing
from $3.00 / 1,000 video-extracteds
Download ANY Video — 8 Platforms, Direct CDN
The ultimate video downloader — YouTube, TikTok, Instagram, Facebook, X, Reddit, Pinterest, Vimeo. Batch 100, direct CDN links, no login, no watermark. HD/SD quality + audio MP3. Views/likes/comments included. Free for failed downloads.
Pricing
from $3.00 / 1,000 video-extracteds
Rating
5.0
(1)
Developer
lexiie
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 hours ago
Last modified
Categories
Share
All-in-One Video Downloader — Batch 100, 8 Platforms
Paste 1-100 URLs → download videos directly. No login, no browser, no yt-dlp.
Download from YouTube, TikTok, Instagram, X/Twitter, Facebook, Reddit, Pinterest, Vimeo in one run. Get direct CDN links + HD/SD quality options + audio-only MP3/M4A. Batch 100, lightweight HTTP-only.
Why Use This?
| Feature | This Actor | Cobalt | yt-dlp |
|---|---|---|---|
| 8 platforms | ✅ All in one | ❌ YT/TT only | ✅ But heavy |
| No login | ✅ Public free | ✅ | ✅ |
| Enriched metadata | ✅ Views, likes, comments | ❌ | ❌ |
| Batch 100 | ✅ One run | ❌ Single URL | ✅ But RAM-heavy |
| Lightweight | ✅ 512MB RAM | — | ❌ Needs GB |
| Pay per success | ✅ $3/1K | Free (limited) | Free (self-host) |
How It Works
- Paste URLs — any mix of YouTube, TikTok, Instagram, X, Facebook, Reddit, Pinterest, Vimeo
- Get download links — direct CDN
mp4/mp3URLs you can download instantly - Optional enrichment — views, likes, comments, uploader, thumbnail included automatically
Supported Platforms
| Platform | URL Examples | Output |
|---|---|---|
| YouTube | youtube.com/watch?v=... · youtu.be/... · /shorts/... | mp4 HD/SD + m4a/webm + views/likes |
| TikTok | tiktok.com/@user/video/123 · vm.tiktok.com/... | mp4 HD/SD + mp3 + views/likes/comments |
instagram.com/p/ABC · /reel/ABC | mp4/jpg + caption + likes/comments | |
| X/Twitter | x.com/user/status/123 · t.co/... | mp4 variants + views/likes/retweets |
facebook.com/watch?v=123 · fb.watch/... | HD/SD mp4 + views/likes/shares | |
reddit.com/r/pics/comments/... | mp4/jpg + ups/comments | |
pinterest.com/pin/123 · pin.it/... | mp4/image + repins/likes | |
| Vimeo | vimeo.com/123456 | mp4 + plays/likes |
Private/deleted returns
PRIVATE_CONTENT/CONTENT_NOT_FOUND— not charged.
Input
{"urls": ["https://www.youtube.com/watch?v=dQw4w9WgXcQ","https://www.tiktok.com/@moh.shofwan/video/7645528079783267605","https://www.instagram.com/reel/Dcm8usVMMcG/","https://x.com/SpaceX/status/1840000000000000000","https://www.facebook.com/watch/?v=10153231379946729","https://vimeo.com/22439234"],"quality": "best","audioOnly": false,"cookies": "","maxFileSizeMB": 0,"proxyConfiguration": {"useApifyProxy": false,"apifyProxyGroups": ["RESIDENTIAL"]}}
| Parameter | Description |
|---|---|
urls | 1-100 public URLs (any mix of platforms) |
quality | best · 1080p · 720p · 480p · 360p · worst |
audioOnly | true → audio only (MP3/M4A) |
cookies | Netscape cookies.txt for private/age-restricted content |
maxFileSizeMB | Skip media larger than this (0 = no limit) |
proxyConfiguration | Keep OFF for cheapest; enable RESIDENTIAL if 403/429 |
Output
Each URL → one dataset item with downloadUrl ready to save:
{"inputUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ","success": true,"platform": "youtube","type": "video","id": "dQw4w9WgXcQ","metadata": {"title": "Rick Astley - Never Gonna Give You Up (Official Video) (4K Remaster)","thumbnail": "https://i.ytimg.com/vi/dQw4w9WgXcQ/hqdefault.jpg","duration": 212,"uploadDate": "2009-10-25","uploader": "Rick Astley"},"stats": {"viewCount": 1809467496,"likeCount": 16800000,"commentCount": 397},"media": [{"url": "https://rr1---sn-....googlevideo.com/videoplayback?...","type": "video","format": "mp4","mimeType": "video/mp4","width": 1920,"height": 1080,"quality": "1080p","fps": 30}],"latencyMs": 842}
Error (not charged)
{"inputUrl": "https://www.facebook.com/private/video/123","success": false,"platform": "facebook","error": { "code": "PRIVATE_CONTENT", "message": "Private or login required" },"latencyMs": 120}
Error codes: INVALID_URL · UNSUPPORTED_PLATFORM · PRIVATE_CONTENT · CONTENT_NOT_FOUND · NO_MEDIA_FOUND · TEMPORARY_UNAVAILABLE · UPSTREAM_BLOCKED
Pricing — Pay Per Event + Usage
| Event | Price | When |
|---|---|---|
apify-actor-start | $0.00005 | Per run (+1 per extra GB RAM) |
video-downloaded | $0.003 ($3.00 / 1,000) | Each URL that returns download links |
- Failed / private / filtered = FREE
- PPE + Usage ON — event price covers downloader; platform usage (CU, proxy, transfer) charged separately
- Volume discounts:
BRONZE $0.002→SILVER $0.0016→GOLD $0.0013
API
Quick start (any language)
curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR/runs?token=TOKEN" \-H "Content-Type: application/json" \-d '{"urls":["https://www.youtube.com/watch?v=dQw4w9WgXcQ"],"quality":"720p"}'
JavaScript
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('lexiie/all-in-one-media-extractor').call({urls: ['https://www.youtube.com/watch?v=dQw4w9WgXcQ'],quality: '720p',});const { items } = await client.dataset(run.defaultDatasetId).listItems();items.forEach(item => console.log(item.media[0]?.url));
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_TOKEN")run = client.actor("lexiie/all-in-one-media-extractor").call(run_input={"urls": ["https://www.youtube.com/watch?v=dQw4w9WgXcQ"],"quality": "720p",})for item in client.dataset(run.default_dataset_id).iterate_items():print(item["media"][0]["url"])
Proxy & Cookies
- Without proxy: YouTube / TikTok / Facebook / Vimeo work 90% of the time
- With
RESIDENTIAL: Needed for Instagram / Facebook bulk (>10) and Reddit 403 — autono-proxy → retry proxywith session rotation - Cookies: Paste
Netscape cookies.txtfor Stories / private Facebook / age-restricted YouTube
Legal
Use only for public content you own or have permission to access. Respect each platform's Terms of Service. We return temporary CDN URLs (e.g., YouTube expire ~4h), we don't store media bytes. For private content, pass your own cookies — not a bypass for DRM/paywall.