/ home

proxy code generator

pick a product and a client. the page prints the code, with the host, the port and the username already built.

the country and the session live inside the proxy username, not in a separate setting. change that one string and the next request exits somewhere else, with no call to us and no wait.

every snippet here is built on the server by the same module that builds real credentials, so what you paste is what the network expects. change the product and the host, the ports and the targeting change with it.

configure

protocol
session

fixed is not offered: residential supports rotating and sticky only, per the catalog.

residential also accepts state and city in the same username, on the same pattern.

product, protocol, session and country are built on the server, so they reload the page.

the connection

usernameu123456
passwordYOUR_PASSWORD
hostgeo.myxproxy.com
port8080
http port8080
socks5 port1080
targeting in the usernamecountry, state, city
session modesrotating, sticky

u123456 and YOUR_PASSWORD are placeholders. the real pair is on the plan in your dashboard.

code

python / requestsexit-ip.py
import requests

# the country and the session ride in the username, not in a separate option
PROXY = "http://u123456:YOUR_PASSWORD@geo.myxproxy.com:8080"

# the dict key is the scheme of the TARGET url, so both keys point at the same proxy
PROXIES = {"http": PROXY, "https": PROXY}

resp = requests.get("http://api.ipify.org", proxies=PROXIES, timeout=30)
print(resp.text)
  • there is no session segment in the username, so the pool is free to give a different exit ip per request.
  • the username and the password are percent encoded inside the url, so a password containing @ : / ? or # cannot cut the userinfo short.
  • residential advertises asn targeting, but the provider layer has no username segment for it, so it is not offered here.

read next

myx sells proxies with no identity attached. an account is one random 16-digit number: no email, no name, no kyc. you top up in crypto.
get an accountall plans