首页 > 网站 > WEB开发 > 正文

手机归属地免费接口查询

2024-04-27 15:13:34
字体:
来源:转载
供稿:网友

最近在开发一个手机充值业务,看看支付宝和微信手机充值都会有号码归属地查询,所以自己就想在网上找些免费的号码归属地查询接口。

运气不错,很快就找到了,再辞也分享给大家,也当是自己的一份笔记吧。

免费手机号码归属地API查询接口一、淘宝网API   API地址:
http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443参数:tel:手机号码返回:JSON

 

二、拍拍API  API地址:

http://virtual.paipai.com/extinfo/GetMobilePRoductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback 参数: mobile:手机号码 callname:回调函数 amount:未知(必须) 返回:JSON三、财付通API  API地址:

http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443 参数: chgmobile:手机号码 返回:xml四、百付宝API  API地址:

https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443 参数: phone:手机号码 callback:回调函数 cmd:未知(必须) 返回:JSON五、115API  API地址:

http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443 参数: mobile:手机号码 callback:回调函数 返回:JSON六、有道api接口

接口地址:

http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112 参数说明: type : 参数手机归属地固定为mobile q : 手机号码 返回XML格式: <?xml version="1.0" encoding="gbk"?> <smartresult> <product type="mobile"> <phonenum>13892101112</phonenum> <location>陕西 延安</location> </product> </smartresult> 或者 http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手机号码 返回JSON格式: fYodaoCallBack(1, {‘product':'mobile','phonenum':'13892101112′,'location':'陕西 延安'}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表