Skip to main content

Documentation Index

Fetch the complete documentation index at: https://help.decodo.com/llms.txt

Use this file to discover all available pages before exploring further.

What Are Proxies for Video Download, and How Can You Get Started?

Proxies for Video Download are specialized servers designed to optimize and facilitate access to video content. They act as intermediaries between a user’s device and servers, allowing users to mask their IP addresses, bypass regional restrictions, and access content that may be blocked. Contact our sales team to access our Proxies for Video Download and receive a customized proxy endpoint tailored to your specific requirements. Our experts will work closely with you to understand your needs and ensure seamless integration, providing high-performance solutions designed to support your content delivery.

Authentication

We’ll provide you with user:pass authentication and a proxy endpoint with port (the default is 7001)

cURL Example

cURL
curl -x "username-test:password@endpoint:7001" "https://ip.decodo.com/json"
📘 Maintaing Sessions Adding the session variable -test to the username will allow the IP address to persist for multiple requests.

Getting a New IP

To rotate the IP to a new one, add a random value between 1-100000 to the username as a parameter ($((1 + RANDOM % 100000)))
cURL
curl -x "username-$((1 + RANDOM % 100000)):password@endpoint:7001" \
     "https://ip.decodo.com/json"

Integration with (yt_dlp) tool for video downloads

Example Request

yt-dlp --proxy username-test:password@endpoint:7001 \
"https://www.youtube.com/watch?v=zJwHKgj5BwM"
  • By default, the system uses the same IP for all video downloads, however, the same IP should only be used for one-time tests.
  • For optimal performance and to prevent potential throttling, it is mandatory to download each video using a distinct IP address for every video. For detailed instructions on how to implement this, see the following section.

Multiple URLs with Unique IPs

When downloading multiple videos, consider using a different IP for each. Here are examples to achieve this:
# First video with one IP
yt-dlp --proxy username-$((1 + RANDOM % 100000)):password@endpoint:7001 \
"https://www.youtube.com/watch?v=7NrKMceE6Wk"

# Second video with different IP
yt-dlp --proxy username-$((1 + RANDOM % 100000)):password@endpoint:7001 \
"https://www.youtube.com/watch?v=mQqw0pLcGXU"