Geo-IP Lookup

Your IP: 216.73.216.116

CountryUnited States of America
Country CodeUS
RegionWashington
CitySeattle
BrowserSafari
OSLinux
DeviceDesktop
IPv6Not Detected
Screen SizeDetecting...
JavaScript Enabled?No
Cookies Enabled?No

API Access

Example API call:

https://geo-ip.co.uk/get.php?ip=216.73.216.116&key=c5febdcaaef81778191a20449988bf90

Example PHP Usage:

<?php
$ip = '8.8.8.8';
$api_key = 'YOUR_API_KEY';
$url = "https://geo-ip.co.uk/get.php?ip=" . urlencode($ip) . "&key=" . urlencode($api_key);
$xml = simplexml_load_file($url);
echo "IP: $ip\n";
echo "Country: " . $xml->country_name . "\n";
echo "Region: " . $xml->region_name . "\n";
echo "City: " . $xml->city_name . "\n";
?>

Example XML Response:

<response>
  <ip>8.8.8.8</ip>
  <country_name>United States</country_name>
  <country_code>US</country_code>
  <region_name>California</region_name>
  <city_name>Mountain View</city_name>
</response>

Get Your Free API Key

Tracking Pixel