博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网易有道 IP地址、手机号码归属地和身份证 查询接口API
阅读量:5729 次
发布时间:2019-06-18

本文共 1288 字,大约阅读时间需要 4 分钟。

hot3.png

刚在天翼应用工厂里发现了好多有用的API,而且基本都是免费的,可谓是个大宝库。有兴趣的可以去看一下:http://api.189works.com/list

这里介绍网易有道在上面发布的三款免费API,毕竟是大公司,速度有保证,所以拿来与大家分享一下。当然其他的API也非常棒。
这三款接口都是以URL GET方式提交参数,以XML的形式返回查询结果
查询IP地址:
http://www.youdao.com/smartresult-xml/search.s?type=ip&q=IP地址
举例:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=123.233.157.9
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="ip">
<ip>123.233.157.9</ip>
<location>山东省济南市 网通</location>
</product>
</smartresult>
查询手机号码归属地:
http://www.yodao.com/smartresult-xml/search.s?type=mobile&q=手机号
举例:http://www.yodao.com/smartresult-xml/search.s?type=mobile&q=13892101111
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile">
<phonenum>13892101111</phonenum>
<location>陕西 延安</location>
</product>
</smartresult>
查询身份证信息:
http://www.yodao.com/smartresult-xml/search.s?type=id&q=身份证号码
举例:http://www.youdao.com/smartresult-xml/search.s?type=id&q=370782196402121133
返回:
<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="identitycard">
<code>370782196402121133</code>
<location>山东省潍坊市诸城市</location>
<birthday>19640212</birthday>
<gender>m</gender>
</product>

</smartresult>

域名检测接口:

http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=www.baidu.com

转载于:https://my.oschina.net/mickelfeng/blog/116051

你可能感兴趣的文章
MYSQL IO innodb-buffer-pool
查看>>
$.ajax里一个中文全角逗号引发的惨案
查看>>
Codeforces 476C Dreamoon and Sums (水
查看>>
设计模式之十八:桥接模式(Bridge)
查看>>
android 实现调查问卷-单选-多选
查看>>
.net平台的rabbitmq使用封装
查看>>
Java之POI读取Excel的Package should contain a content type part [M1.13]] with root cause异常问题解决...
查看>>
docker容器运行与退出
查看>>
理解Path对路径进行操作的API
查看>>
使用滤镜设置透明导致 IE 6/7/8/9 解析异常
查看>>
字符串格式化:ToString("F03")
查看>>
Cross-Site Scripting(XSS): 跨站脚本攻击介绍
查看>>
Click和Command事件的区别是什么
查看>>
Python 多线程抓取网页
查看>>
显示桌面快捷方式为什么不见了怎么办怎么找回来?
查看>>
bft安装log(3)
查看>>
小白学数据分析----->与MySQL有关的小知识_I
查看>>
【初窥javascript奥秘之闭包】叶大侠病都好了,求不踩了:)
查看>>
[置顶] 用Wireshark保存RTP的负载码流
查看>>
编译Android4.3内核源代码
查看>>