Documentation
Standard proxy protocols. Replace the placeholders with the credentials from your dashboard.
Endpoint
After payment you receive a username and password in your dashboard. The endpoint is the same for everyone.
# SOCKS5
curl -x socks5h://USER:PASS@keironet.com:80 https://ipinfo.io/json
# HTTP
curl -x http://USER:PASS@keironet.com:80 https://ipinfo.io/jsonUse socks5h rather than socks5 so hostnames are resolved through the proxy. With plain socks5 your own machine resolves the name, which leaks your DNS and can return the wrong regional result.
Verify it works
This should return a Japanese residential IP on the NTT/OCN network, not the address of your own server.
curl -x socks5h://USER:PASS@keironet.com:80 https://ipinfo.io/json
{ "ip": "118.15.x.x", "country": "JP", "org": "AS4713 NTT ..." }
Common errors
407 or authentication failure
Wrong username or password, or the subscription expired. Check the dashboard. Ten wrong attempts from one IP triggers a 15 minute block.
Connection refused on port 25
SMTP ports are blocked on purpose to keep the IP pool clean. This cannot be unblocked.
Quota exhausted
You used the full bandwidth allowance. Buy another plan or upgrade.