Whois and IP address GeoIP information. Free GeoIP cross domain JSON API.
You ip: 18.97.14.87
try: 18.97.14.87, 8.8.8.8, 1.1.1.1, facebook.com
| ip | 18.97.14.87 |
| country | United States |
| country_iso | US |
| city | Dublin |
| city_lat | 40.09923 |
| city_lon | -83.11408 |
| region | Ohio |
| region_iso | US-OH |
<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>