For the complete documentation index, see llms.txt. This page is also available as Markdown.

ISP Residential Proxies

ISP Residential Proxies Quick Start

Service is accessed using following entry data:

  • Host: proxy.goproxies.com - All countries.

Although we have an automatic routing, you may manually target preferred regions to reduce latency:

  • proxy-asia.goproxies.com - for Asia and Oceania

  • proxy-europe.goproxies.com - for Europe and Africa

  • proxy-america.goproxies.com - for both Americas

  • Port: 1080

  • Authorisation: Basic

  • Username/Password: [provided separately].

There are two types of credentials:

  1. Dashboard user - used to access the GoProxies dashboard.

  2. Proxy user - used to access our proxy pool. Please ensure you use the proxy user credentials when sending requests to our proxy network.

Below are a few basic request examples in various programming languages. You can test it via any application that has HTTP(s) proxy feature or simply a terminal command:

npm install axios https-proxy-agent
// example.js
const axios = require('axios');
const { HttpsProxyAgent } = require('https-proxy-agent');

const proxyAuth = encodeURIComponent('customer-USERNAME') + ':' + encodeURIComponent('PASSWORD');
const proxyUrl = `http://${proxyAuth}@proxy.goproxies.com:1080`; // use http:// here for CONNECT proxy auth
const agent = new HttpsProxyAgent(proxyUrl);

(async () => {
  try {
    const res = await axios.get('https://ip.goproxies.com', { httpsAgent: agent, timeout: 10000 });
    console.log('status:', res.status);
    console.log('body:', res.data);
  } catch (err) {
    console.error('request error:', err.message);
  }
})();
import requests

username = "customer-USERNAME"
password = "PASSWORD"

proxy = f"https://{username}:{password}@proxy.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.

If you cannot find something or need help, contact us at support@goproxies.com or start an Intercom chat.

Last updated

Was this helpful?