High-Bandwidth Proxies
Learn how to use Oxylabs High-Bandwidth Proxies for traffic-intensive tasks, such as video and audio scraping.
Getting started
Endpoint configuration
Example integration: YouTube Downloader
Basic Usage
yt-dlp --proxy username-$(openssl rand -hex 16):password@endpoint:60000 \
"https://www.youtube.com/watch?v=WNCl-69POro"import os
import yt_dlp
username = 'YOUR_USERNAME'
password = 'YOUR_PASSWORD'
proxy = f'http://{username}-{os.urandom(16).hex()}:{password}@your-endpoint:60000'
ydl_opts = {
'proxy': proxy,
}
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=WNCl-69POro'])Multiple URLs with different IPs
Agent Skills
Installation
Claude Code (plugin marketplace)
Other agents (generic)
Configuration
Variable
Description
How to use
Last updated
Was this helpful?

