IP地址查询API

淘宝IP地址

接口使用例子(PHP):

$ip = @file_get_contents("http://ip.taobao.com/service/getIpInfo.php?ip=".$_GET["ip"]);

$ip = json_decode($ip,true);

新浪IP API

接口使用例子(PHP):

$ip = @file_get_contents("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=".$_GET["ip"]);

126 IP API

$ip = @file_get_contents("http://ip.ws.126.net/ipquery?ip=".$_GET["ip"]);

你可能感兴趣的:(IP地址查询API)