Skip to main content
Replace the example host (isp.proxies.fo) with the one shown in your dashboard.

HTTP / HTTPS (port 61234)

import requests

proxy = "http://adminywsve:jwqcoz4lfm@isp.proxies.fo:61234"
proxies = {"http": proxy, "https": proxy}

r = requests.get("https://api.ipify.org", proxies=proxies, timeout=30)
print(r.text)

SOCKS5 (port 62234)

# pip install requests[socks]
import requests

proxy = "socks5://adminywsve:jwqcoz4lfm@isp.proxies.fo:62234"
proxies = {"http": proxy, "https": proxy}

r = requests.get("https://api.ipify.org", proxies=proxies)
print(r.text)

Browser automation

Static IPs pair well with long-running browser sessions.
import { chromium } from "playwright";

const browser = await chromium.launch({
  proxy: {
    server: "http://isp.proxies.fo:61234",
    username: "adminywsve",
    password: "jwqcoz4lfm",
  },
});

const context = await browser.newContext();
const page = await context.newPage();

await page.goto("https://example.com/login");
// Full login flow — IP stays the same throughout
await page.fill("#username", "myaccount");
await page.fill("#password", "mypassword");
await page.click("#submit");

await browser.close();

Verifying static IP

# Should return the same IP on every call
for i in 1 2 3; do
  curl -x "http://adminywsve:jwqcoz4lfm@isp.proxies.fo:61234" https://api.ipify.org
  echo
done

Quick-copy host:port:user:pass format

isp.proxies.fo:61234:adminywsve:jwqcoz4lfm
isp.proxies.fo:62234:adminywsve:jwqcoz4lfm