USERNAME, PASSWORD, and the gateway host with the values from your dashboard.
Proxy Endpoint
All examples on this page point at the same gateway. Adjust the host and port to match the network you’re using (residential, datacenter, or ISP).Components Breakdown
| Component | Description | Example |
|---|---|---|
| Host | Proxy gateway hostname | gate.roundproxies.com |
| Port | Connection port | 8000 |
| Username | Your account username | USERNAME |
| Password | Authentication password | PASSWORD |
| Target | The URL you want to scrape | https://httpbin.org/ip |
Python
Therequests library is the most popular choice for synchronous scraping in Python.
Node.js
Useaxios together with https-proxy-agent to route both HTTP and HTTPS traffic through the gateway.
Go
The standardnet/http package supports proxies out of the box via http.ProxyURL.
PHP
PHP’s bundled cURL bindings make routing requests through Roundproxies a one-liner.Ruby
The standard library’sNet::HTTP::Proxy factory wraps Net::HTTP with proxy auth.