Free Geolocation API http://ip-api.com/docs/
You can get information about your ip-address, country, region, city, isp, organization.
Response formats and examples: XML, JSON, CSV, PHP.
Usage limits:
Our system will automatically ban any IP addresses doing over 240 requests per minute.
PHP Example
$ip = $_SERVER['REMOTE_ADDR'];
$query = @unserialize(file_get_contents('http://ip-api.com/php/'.$ip));
if($query && $query['status'] == 'success') {
echo 'My IP: '.$query['query'].', '.$query['isp'].', '.$query['org'].', '.$query ['country'].', '.$query['regionName'].', '.$query['city'].'!';
} else {
echo 'Unable to get location';
}