Intro
Documentation below describes how to use Goproxies.com service.
Goproxies.com services are compatible with many software platforms and tools, from operating systems to browser add-ons. Explore our step-by-step integration guides and learn how to set up your proxies.
If you cannot find something or need help, contact us at [email protected] or start an Intercom chat. Goproxies.com supports:
HTTPS proxy protocol (a.k.a. HTTP proxy with CONNECT method)
HTTP proxy protocol
Service is accessed using following entry data:
Host: hosting.goproxies.com - All countries. Although we have automatic routing, you may manually target preferred regions to reduce latency: hosting-europe.goproxies.com for Europe and Africa, hosting-asia.goproxies.com for Asia and Oceania, hosting-america.goproxies.com for both Americas.
Port: 1080
Authorisation: Basic
Username/Password: [provided separately]
For example integrations with applications like Chrome, SwitchyOmega, Proxifier, Foxy Proxy, Proxy Switcher, and more, see the Integrations Page
Code Examples
curl --proxytunnel --proxy "https://customer-USERNAME:[email protected]:1080" https://ip.goproxies.comnpm install axios https-proxy-agentconst axios = require('axios');
const { HttpsProxyAgent } = require('https-proxy-agent');
const username = 'customer-USERNAME';
const password = 'PASSWORD';
const proxyUrl = `http://${encodeURIComponent(username)}:${encodeURIComponent(password)}@hosting.goproxies.com:1080`;
const agent = new HttpsProxyAgent(proxyUrl);
(async () => {
try {
const res = await axios.get('https://ip.goproxies.com', { httpsAgent: agent, timeout: 10000 });
console.log(res.status, res.data);
} catch (err) {
console.error('request error:', err.message);
}
})();import requests
username = "customer-USERNAME"
password = "PASSWORD"
proxy = f"https://{username}:{password}@hosting.goproxies.com:1080"
proxies = {
"http": proxy,
"https": proxy,
}
resp = requests.get("https://ip.goproxies.com", proxies=proxies, timeout=10)
print(resp.status_code)
print(resp.text)Last updated
Was this helpful?

