import requestsproxy = "http://USER-session-mysession:PASSWORD@dcp-us.proxies.fo:10808"proxies = {"http": proxy, "https": proxy}# All requests exit through the same IPfor _ in range(5): print(requests.get("https://api.ipify.org", proxies=proxies).text)
UDP routing requires a SOCKS5 client that supports UDP ASSOCIATE. Standard HTTP libraries won’t work — use dedicated SOCKS5 tooling (curl, proxychains, or language-specific libraries like PySocks).
# api6.ipify.org is IPv6-only — if this returns a valid response, you're on IPv6curl -x "http://USER:PASSWORD@dcp-eu.proxies.fo:10808" https://api6.ipify.org
See IPv4 vs IPv6 for how the network decides which stack to use.