Whoi.io

Whois and IP address GeoIP information. Free GeoIP cross domain JSON API.

whoi.io/

You ip: 3.14.15.94
try: 3.14.15.94, 8.8.8.8, 1.1.1.1, facebook.com

json

You ip 3.14.15.94

ip3.14.15.94
countryUnited States
country_isoUS
cityColumbus
city_lat39.96118
city_lon-82.99879
regionOhio
region_isoUS-OH

API Demo

<script>
var getJSON = function(url, callback) {
	var xhr = new XMLHttpRequest();
	xhr.open('GET', url, true);
	xhr.responseType = 'json';
	xhr.onload = function() {
	  var status = xhr.status;
	  if (status === 200) {
		callback(null, xhr.response);
	  } else {
		callback(status, xhr.response);
	  }
	};
	xhr.send();
};

getJSON('https://whoi.io/json',
function(err, data) {
	console.log (data);
  if (err !== null) {
	document.getElementById("demo").innerHTML = 'Something went wrong: ' + err;
  } else {
	document.getElementById("demo").innerHTML = 'Country: ' + data.country
	+ '. Detected by whoi.io.';
  }
});	
</script>
<div id="demo"></div>