Get proxy external IP

Joined
Feb 5, 2021
Messages
33
Reaction score
8
Hello,

Is there anyway to get proxy port external IP address before actually using these ports, I know that this can be done by simply putting proxy port credentials into firefox or windows proxy wizard, But i want more programmatic way throuugh API or somthing where i put port credentials then get external IP
 
It depends on the provider. Usually many dedicated proxy providers give you access to a dashboard that will tell you what your external IP is.
 
It depends on the provider. Usually many dedicated proxy providers give you access to a dashboard that will tell you what your external IP is.
correct there probably isnt a free way to do it.
 
Open a terminal in your OS and run the command:

Code:
curl -x IP:Port:Username:Password checkip.amazonaws.com

Replace
Code:
 IP:port:Username:password
with your actual values.
 
Open a terminal in your OS and run the command:

Code:
curl -x IP:Port:Username:Password checkip.amazonaws.com

Replace
Code:
 IP:port:Username:password
with your actual values.
This is a really good solution, But i'm getting this error "Unsupported proxy syntax". My proxy credentials like this:

bar.hif.mal:2828:Username-mok-dskos-8914: password


Do you know how to solve it ?!
 
There's no problem.
Host : port : login : password
I know, I tried it in virtual machine, it gives different error: "Sorry, you are not currently allowed to request http://google.com/ from this cache until you have authenticated yourself."
 
I know, I tried it in virtual machine, it gives different error: "Sorry, you are not currently allowed to request http://google.com/ from this cache until you have authenticated yourself."

Try running it on your local machine to figure out if the issue comes from the server or the proxy. If that doesn't work, post a screenshot of the exact format you're using but make sure to blur your proxy credentials.

bar.hif.mal:2828:Username-mok-dskos-8914: password

This host makes no sense. Check the domain/host you're using.
 
Back
Top