Download ANY Video — 8 Platforms, Direct CDN avatar

Download ANY Video — 8 Platforms, Direct CDN

Pricing

from $3.00 / 1,000 video-extracteds

Go to Apify Store
Download ANY Video — 8 Platforms, Direct CDN

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

lexiie

Maintained by Community

Actor 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?

FeatureThis ActorCobaltyt-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/1KFree (limited)Free (self-host)

How It Works

  1. Paste URLs — any mix of YouTube, TikTok, Instagram, X, Facebook, Reddit, Pinterest, Vimeo
  2. Get download links — direct CDN mp4 / mp3 URLs you can download instantly
  3. Optional enrichment — views, likes, comments, uploader, thumbnail included automatically

Supported Platforms

PlatformURL ExamplesOutput
YouTubeyoutube.com/watch?v=... · youtu.be/... · /shorts/...mp4 HD/SD + m4a/webm + views/likes
TikToktiktok.com/@user/video/123 · vm.tiktok.com/...mp4 HD/SD + mp3 + views/likes/comments
Instagraminstagram.com/p/ABC · /reel/ABCmp4/jpg + caption + likes/comments
X/Twitterx.com/user/status/123 · t.co/...mp4 variants + views/likes/retweets
Facebookfacebook.com/watch?v=123 · fb.watch/...HD/SD mp4 + views/likes/shares
Redditreddit.com/r/pics/comments/...mp4/jpg + ups/comments
Pinterestpinterest.com/pin/123 · pin.it/...mp4/image + repins/likes
Vimeovimeo.com/123456mp4 + plays/likes

Private/deleted returns PRIVATE_CONTENT / CONTENT_NOT_FOUNDnot 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"]
}
}
ParameterDescription
urls1-100 public URLs (any mix of platforms)
qualitybest · 1080p · 720p · 480p · 360p · worst
audioOnlytrue → audio only (MP3/M4A)
cookiesNetscape cookies.txt for private/age-restricted content
maxFileSizeMBSkip media larger than this (0 = no limit)
proxyConfigurationKeep 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

EventPriceWhen
apify-actor-start$0.00005Per 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.002SILVER $0.0016GOLD $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 ApifyClient
client = 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 — auto no-proxy → retry proxy with session rotation
  • Cookies: Paste Netscape cookies.txt for Stories / private Facebook / age-restricted YouTube

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.