All Social Media Video Downloader avatar
All Social Media Video Downloader

Pricing

$10.00/month + usage

Go to Store
All Social Media Video Downloader

All Social Media Video Downloader

Developed by

Wilcode

Wilcode

Maintained by Community

All Social Media Video Downloader API allows easy extraction of video links from platforms like Facebook, Instagram, Twitter, TikTok, YouTube, etc.

3.8 (2)

Pricing

$10.00/month + usage

24

Total users

306

Monthly users

29

Runs succeeded

>99%

Response time

1.4 days

Last modified

17 days ago

📹 All Social Media Video Downloader

The All Social Media Video Downloader is a powerful API that allows developers to extract video links from various social media platforms. This tool simplifies the process of obtaining direct video links, making it easier to embed or download videos from supported platforms.

You can view the detailed user guide here.

🌟 Features

  • 🖥️ Multi-Platform Support: Extract video links from platforms such as Facebook, Instagram, Twitter, TikTok, YouTube, and more.
  • 🔗 Easy Integration: Simple and straightforward API endpoints for seamless application integration.
  • High Performance: Fast and reliable retrieval of video links.
  • 🔒 Secure: Robust security measures to ensure safe usage.

🌐 Supported Platforms

  • YouTube
  • Facebook
  • Instagram
  • Twitter
  • TikTok (without watermark)
  • Dailymotion
  • LinkedIn
  • Vimeo
  • ...and many more!

(Enter the video URL from your desired social network to check if it’s supported.)


🛡️ Proxies

To access social media platforms, a RESIDENTIAL proxy group is required. Using Apify Proxy is recommended. Depending on the video size and proxy quality, downloading may take from 2 to 360 seconds.


🛠️ API Request

Endpoint:

POST https://api.apify.com/v2/acts/wilcode~all-social-media-video-downloader/run-sync-get-dataset-items?token=<token>

Request Body (Example of TikTok - Other platforms are similar as well):

{
"url": "https://www.tiktok.com/@alickzm/video/7440491396902997303",
"proxySettings": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
],
"apifyProxyCountry": "US"
}
}

Request Body (Facebook/Instagram - Download & Merge Audio and Video):

{
"url": "https://www.facebook.com/reel/1231817508603093",
"mergeAV": true,
"proxySettings": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
],
"apifyProxyCountry": "US"
}
}

Request Body (YouTube - Specify Video Quality - Download & Merge Audio and Video):

{
"url": "https://www.youtube.com/shorts/NsMKvVdEPkw",
"mergeYoutube": {
"quality": 720
},
"proxySettings": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
],
"apifyProxyCountry": "US"
}
}

Input Parameters:

  • url (required): The video URL to download.
  • proxySettings (optional): Use residential proxy for better success, especially for TikTok.
  • mergeAV (optional): Merge audio and video (for Instagram/Facebook).
  • mergeYoutube (optional): Merge audio and video with a specified quality (for YouTube).

💻 cURL Command

curl -X POST "https://api.apify.com/v2/acts/wilcode~all-social-media-video-downloader/run-sync-get-dataset-items?token=<token>" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.youtube.com/shorts/NsMKvVdEPkw",
"proxySettings": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
],
"apifyProxyCountry": "US"
}
}'

📄 JSON Results

For YouTube, Instagram, and Facebook

  • The download field appears only if you use mergeYoutube or mergeAV. It contains the link to the video merged with audio.
  • The tool saves the downloaded video to your Storage and provides a direct shareable download link.

For Other Platforms

  • The formats field lists the available resolutions with corresponding download links.

Sample Response:

{
"title": "Video title",
"uploader": "Channel Name",
"channel": "Channel Name",
"upload_date": "20240706",
"duration": 100,
"description": "",
"like_count": 478,
"comment_count": 19,
"thumbnail": "image thumbnail url",
"formats": [
{
"resolution": "720x1080",
"url": "url download"
},
{
"resolution": "1080x1920",
"url": "url download"
},
{
"resolution": "audio only",
"url": "url download"
}
],
"download": [
{
"resolution": 720,
"url": "https://api.apify.com/v2/key-value-stores/amhvXQKACHs124/records/downloaded_video_1732199392399.mp4"
}
]
}