Rotating Residential Proxies
Every request is automatically assigned a new IP address from the pool. Ideal for high-volume scraping, data collection, and ad verification.
# Rotating residential — new IP per requestcurl -x "http://customer-USERNAME-cc-US:PASSWORD@gate.zentislabs.com:8080" \ "https://httpbin.org/ip"
# Verify rotation — each request shows a different IPfor i in $(seq 1 5); do echo "Request $i:" curl -s -x "http://customer-USERNAME-cc-US:PASSWORD@gate.zentislabs.com:8080" \ "https://httpbin.org/ip" | jq '.origin'doneimport requests
USERNAME = "customer-john_doe-cc-US"PASSWORD = "YOUR_PASSWORD"PROXY = f"http://{USERNAME}:{PASSWORD}@gate.zentislabs.com:8080"
proxies = {"http": PROXY, "https": PROXY}
# Each request gets a brand new IPfor i in range(10): response = requests.get("https://httpbin.org/ip", proxies=proxies, timeout=30) print(f"Request {i+1}: {response.json()['origin']}")