Proxy Authentication
Proxy authentication is how a provider decides that a connection belongs to a paying customer. Every vendor ships two mechanisms. IP whitelisting allows traffic from egress addresses you register in advance and needs no credentials at all. Username and password credentials travel in the Proxy-Authorization header or, more commonly in scraping stacks, inside the connection string as http://user:pass@gateway:port. Most accounts can use either, and many teams end up using both in different environments.
The credential path carries more than identity. Vendors have converged on packing request parameters into the username field, so the user string ends up encoding country, city, session identifier and session duration alongside the account name. It is an unofficial convention rather than a standard, but it is close to universal because a backconnect gateway has nowhere else to put per request options. It also makes credentials unusually leak prone. Those strings end up in shell history, in Dockerfiles and image layers, in CI logs, in error messages that print the failing URL, and in screenshots pasted into issue trackers. A leaked proxy credential is not an account takeover in the usual sense; it is someone else spending your bandwidth balance.
Sub-user accounts are the mechanism that limits the damage. A sub-user is a separate credential pair under the same account, typically with its own bandwidth quota, and it gives you both a blast radius and an attribution trail. One per service, or one per team, means a leak costs that sub-user's quota rather than the whole balance, and monthly spend can be split across the jobs that caused it instead of arriving as one number.
Structure the accounts before you need them. Issue a sub-user per deployed service, cap each one's bandwidth below what a runaway loop could burn overnight, rotate on a schedule and immediately on any suspected exposure, and keep the strings in a secret manager rather than in environment files baked into images. Whitelisting is the safer mechanism where it fits, since there is no credential to leak, but it breaks the moment you autoscale onto ephemeral addresses. If you want to keep it, route scraper egress through a NAT gateway or another fixed egress IP so the address the vendor sees stays constant while the workers underneath it come and go.
Tools that handle proxy authentication
4 tools in the webscrape.dev directory are commonly used for proxy authentication workflows, spanning proxy networks. Each is reviewed independently with pricing and editorial assessment.
Webshare is a proxy infrastructure provider founded in 2018. It sells three proxy product lines: datacenter proxies (400,000+ IPs), static residential/ISP proxies sourced from providers like Comcast and AT&T, and rotating residential proxies (80 million+ IPs across 195 countries) with country and city targeting. Access is through a REST API, an account dashboard, and a Chrome extension, with a free tier of 10 datacenter proxies and no credit card required. The company reports more than 60,000 paid customers and over 650 billion monthly proxy requests.
Proxy-Seller is a proxy service provider founded in 2014 and headquartered in Larnaca, Cyprus. It sells residential proxies (47M+ IPs across 220+ locations), mobile proxies (5G/4G/LTE from carrier networks in 20+ countries), static IPv4 datacenter proxies, IPv6 proxies, and static ISP proxies. Pricing is per IP or per GB, with sticky-session and rotation options, and access comes through a management dashboard or a REST API with SDKs for PHP, Node.js, Python, Java, and Go.
Mars Proxies is a proxy network with four proxy types: residential (1M+ IPs across 195 countries, from $1.65/GB), datacenter (about 100K IPs, from $0.89/proxy), ISP/dedicated (from $1.35/proxy), and mobile 4G/5G/LTE (from $2.83/day). Plans are pay-as-you-go or subscription-based, with no contracts or traffic expiration. It ships an API with Python, Node.js, and cURL examples, browser extensions for Chrome and Firefox, mobile apps for Android and iOS, an IP lookup tool, a proxy checker, city-level geo-targeting, and HTTP/HTTPS plus SOCKS5 support.
Evomi is a Switzerland-based proxy and web-data-collection service, apparently founded around 2024, with residential ($0.49/GB), datacenter ($0.35/GB), mobile ($2.20/GB), and static residential/ISP ($1.00/IP) proxies. It also runs a Scraper API with JavaScript rendering and structured-output extraction, plus a Scraping Browser that handles dynamic content with automatic CAPTCHA support. The company reports 54M+ IPs across 150+ countries, is a member of the Ethical Web Data Collection Initiative, and holds ISO 27001/27701/27018 certification, with SOC 2 in progress.