API
Our
API interface allows connection with any other application or service, regardless of the programming language in which it was created.
In your account, you can choose in which format you will receive the result (txt, xml, json). You simply call our API in the format:
https://www.geo-ip.eu/api/i.php?idu=YOUR_ID&ku=YOUR_SECRET_KEY&q=192.168.1.1
or
https://www.geo-ip.eu/api/i.php?idu=YOUR_ID&ku=YOUR_SECRET_KEY&q=instagram.com
Result in text format:Austria;AT;Vienna;1010;48,204898834229;16,366199493408;EU;FACEBOOK
country;country code;city;zip;gps;region;isp/owner
Result in XML:
<result>
<country>Austria</country>
<country_code>AT</country_code>
<city>Vienna</city>
<zip>1010</zip>
<gps_lat>48,204898834229</gps_lat>
<gps_lon>16,366199493408</gps_lon>
<region>EU</region>
<isp>FACEBOOK</isp>
</result>
Result in JSON:[
{
"country": "Austria",
"country code": "AT",
"city": "Vienna",
"zip": "1010",
"gps_lat": "48,204898834229",
"gps_lon": "16,366199493408",
"region": "EU",
"isp": "FACEBOOK"
}
]