VPN which has API to change IP?

Repulsor

Senior Member
Joined
Jun 11, 2013
Messages
904
Reaction score
357
Hey guys,

I am a coder, so I try to automate shit ton of things so it would just need minimal amount of managing once it is set.

I am really stuck at change a VPN IP programatically. Anyone know of any VPNs having such an option.

For example, TOR has an API, but unfortunately, TOR will result in a lot of slow/banned IPs for me.

Any suggestions?
 
My fallback option would be rotating proxies, but if you guys know VPNs that has this feature, then its the best.
 
You can do it this way on almost any VPN
Download openvpn and add your vpn servers into it\
Mine looks like this
bhw.png

OpenVPN lets you connect/disconnect from CMD prompt.
You can automate your cmd prompt commands however you want, in batch script, python, etc.
The commands in my case will look like this
Code:
c:\Program Files\OpenVPN\bin>openvpn-gui.exe --command disconnect_all
c:\Program Files\OpenVPN\bin>openvpn-gui.exe --connect ipvanish-US-Charlotte-clt-c19.ovpn

If this is too overkill, IPVanish also has a command built-in their software to rotate IP every X minutes.
 
Back
Top