记住用户名密码
记录几个免费的IP地址归属地查询的接口,其实这些IP归属地的查询,实现起来也不难,主要是要有一个IP库文件就能实现,以后有空自己实现一下。
1. ip-api.com ,可切换显示语言
http://ip-api.com/json/117.136.12.79?lang=zh-CN
{
"status":"success",
"country":"中華人民共和國",
"countryCode":"CN",
"region":"GD",
"regionName":"广东省",
"city":"广州",
"zip":"",
"lat":23.1291,
"lon":113.2643,
"timezone":"Asia/Shanghai",
"isp":"China Mobile communications corporation",
"org":"China Mobile",
"as":"AS56040 China Mobile communications corporation",
"query":"117.136.12.79"
}
2. 百度
http://opendata.baidu.com/api.php?query=117.136.12.79&co=&resource_id=6006&oe=utf8
{
"status":"0",
"t":"",
"set_cache_time":"",
"data":[
{
"ExtendedLocation":"",
"OriginQuery":"117.136.12.79",
"appinfo":"",
"disp_type":0,
"fetchkey":"117.136.12.79",
"location":"广东省广州市 移动",
"origip":"117.136.12.79",
"origipquery":"117.136.12.79",
"resourceid":"6006",
"role_id":0,
"shareImage":1,
"showLikeShare":1,
"showlamp":"1",
"titlecont":"IP地址查询",
"tplt":"ip"
}
]
}
3.直接调用即可【没有频率限制】
https://ip.useragentinfo.com/jsonp?callback=callback&ip=117.136.12.79
{"country": "中国",
"short_name": "CN",
"province": "广东省",
"city": "",
"area": "",
"isp": "移动",
"net": "移动网络",
"ip": "117.136.12.79",
"code": 200,
"desc": "success"
}
4、
https://api.vore.top/api/IPdata?ip=113.101.251.90
{"code": 200,
"msg": "SUCCESS",
"ipinfo": {
"type": "ipv4",
"text": "113.101.251.90",
"cnip": true
},
"ipdata": {
"info1": "广东省",
"info2": "云浮市",
"info3": "罗定",
"isp": "电信"
},
"adcode": {
"o": "广东省云浮市罗定 - 电信",
"p": "广东",
"c": "云浮",
"n": "广东-云浮",
"r": "广东-云浮",
"a": "445300",
"i": true
},
"tips": "接口由VORE-API(https://api.vore.top/)免费提供",
"time": 1688464371
}
目前有 0 条留言 其中:访客:0 条, 博主:0 条