Как подключить

curl (HTTP)

curl -x http://LOGIN:PASSWORD@gate.soxydata.lol:3128 https://api.ipify.org

curl (SOCKS5)

curl --socks5 LOGIN:PASSWORD@gate.soxydata.lol:1080 https://api.ipify.org

Python

import requests
proxies = {"http": "http://LOGIN:PASSWORD@gate.soxydata.lol:3128", "https": "http://LOGIN:PASSWORD@gate.soxydata.lol:3128"}
r = requests.get("https://api.ipify.org", proxies=proxies)
print(r.text)