Metube

  • binhbui/metube
  • Modified
  • Users 4
  • Runs 56
  • Created by Author's avatarBinh Bui

Metube is the best actor to get link download videos from youtube. It's very simple to use, just copy the link from youtube and paste it into the actor and run. Wait a second, you will get links to download videos from youtube. Open the link download the video in the browser and download it.

Free trial for 7 days

Then $10.00/month

No credit card required now

Metube

Free trial for 7 days

Then $10.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "youtubeUrls": [
    "https://www.youtube.com/watch?v=irz1XRFZA0Q"
  ]
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/binhbui~metube/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'