City Columbus
Country United States (US)
Latitute 39.9653
Longitude -83.0235
Time zone America/New_York
Dokumentation https://geoip.mail.town/api/{ip}/{language}/{type}
ip Korrekte IP Adresse im "IPv4" oder "IPv6 Format"
language   Sprach Code (z.B. "de" oder "en")
type Kurze Ausgabe mit "short" oder komplette Ausgabe mit "full"
API https://geoip.mail.town/api/8.8.8.8
https://geoip.mail.town/api/2a00:a200:0:f::888
https://geoip.mail.town/api/8.8.8.8/full
https://geoip.mail.town/api/87.79.99.25/de
Script <script>
function foo(data) {
      document.write("City: ", data.city);
      document.write("Country: ", data.country.name);
      document.write("Latitude: ", data.location.latitude);
      document.write("Longitude: ", data.location.longitude);
}
</script>
<script src="https://geoip.mail.town/api?callback=foo"></script>