Whois and IP address GeoIP information. Free GeoIP cross domain JSON API.
You ip: 244.15.253.18
try: 244.15.253.18, 8.8.8.8, 1.1.1.1, facebook.com
| ip | 244.15.253.18 |
| country | |
| country_iso | |
| city | |
| city_lat | |
| city_lon | |
| region | |
| region_iso |
<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>