Dedicated DataCenter Proxies
Dedicated DataCenter Proxies Quick Start
Service is accessed using following entry data:
Host: hosting.goproxies.com - All countries.
Port: 1080
Authorisation: Basic
Username/Password: [provided separately]
There are two types of credentials:
Dashboard user - used to access the GoProxies dashboard.
Proxy user - used to access our proxy pool. Please ensure you use the proxy user credentials when sending requests to our proxy network.
You can test it via any application that has HTTP(s) proxy feature (Chrome, SwitchyOmega, Profixier, Foxy Proxy, Proxy Switcher etc.) or simply a terminal command:
curl --proxytunnel --proxy "https://customer-USERNAME:PASSWORD@hosting.goproxies.com: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)
Control Your Connection
You can refine your proxy request by including parameters that manage IP selection.
Continue reading our step-by-step guide for more information on additional proxy parameters, along with detailed examples.
Last updated
Was this helpful?

