High-Bandwidth Proxies
Learn about Oxylabs High-Bandwidth Proxies and how to use them for video or audio scraping tasks.
Getting Started
YouTube Downloader (yt_dlp) integrationEndpoint Configuration
Making Requests
curl -x username-test:password@your-endpoint:60000 \
https://ip.oxylabs.io/locationimport requests
import random
username = 'YOUR_USERNAME'
password = 'YOUR_PASSWORD'
proxy = 'your-endpoint:60000'
if not username.endswith("-test"):
username += "-test"
proxies = {
"http": f"http://{username}:{password}@{proxy}",
"https": f"http://{username}:{password}@{proxy}"
}
response = requests.get(
"https://ip.oxylabs.io/location",
proxies=proxies
)
print(response.text)Setting a session for each download
Last updated
Was this helpful?

