Your External IP and Country code

Your IP

IP 34.228.7.237
HTTP Client-IP empty
HTTP X-Forwarded-For empty

Country code

Country Code US

FAQ

Usage from backend

You can get your IP in RAW and JSON formats without any HTML and AD codes. It's useful for scripts and other system purposes

Example of getting IP in PLAIN format: https://md5calc.com/ip.plain Will output: 34.228.7.237 Example of getting IP in JSON format: https://md5calc.com/ip.json Will output: "34.228.7.237" For example you can use this from CLI to get your external IP when you behind the NAT
echo "My external IP:" $(curl -s https://md5calc.com/ip.plain)
Will output: My external IP: 34.228.7.237

Usage from Javascript

We have removed CORS restriction so you can use direct access to IP information in your javascript applications via AJAX.

Example:

var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
  if (xhr.readyState == 4 && xhr.status == 200) {
    console.log('Your external IP is "'+xhr.response+'"');
  };
};
xhr.open('GET', 'https://md5calc.com/ip.plain', true);
xhr.send();
Will output: Your external IP is "34.228.7.237"

Please read the privacy policy (agreement of the cookies usage, other websites embedded content, etc.). If you continue to use the site, we will assume that you agree with our privacy policy.
OkPrivacy Policy