Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created October 16, 2013 07:36
Show Gist options
  • Save netsi1964/7004011 to your computer and use it in GitHub Desktop.
Save netsi1964/7004011 to your computer and use it in GitHub Desktop.
Find geoinformation using freegeoip.net

Find geoinformation using freegeoip.net

	$.getJSON('http://freegeoip.net/json/',function(data){
		console.dir(data);
	})

Example output

	{
	"ip":"212.242.207.8",
	"country_code":"DK",
	"country_name":"Denmark",
	"region_code":"18",
	"region_name":"Midtjylland",
	"city":"Aarhus",
	"zipcode":"",
	"latitude":56.1534,
	"longitude":10.2255,
	"metro_code":"",
	"areacode":""
	}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment