手机归属地

根据手机号码前七位,查询手机号码所属地区、运营商(含虚拟)、邮政编码等。

接口文档

接口地址: https://whyta.cn/api/tx/mobilelocal

返回格式: JSON

请求方式: GET

请求示例:https://whyta.cn/api/tx/mobilelocal?key=你的APIKEY&phone=1522150

接口备注:4 =>扫码关注公众号获取APIKEY<=

请求参数:

参数类型必填示例值说明
keystring你的APIKEY
phonestring1522150手机号码

返回参数说明:

参数类型示例说明
mobileprovicestring上海归属地省份
mobileareastring上海归属地地区
proviceidstring310000归属地省份ID
areaidstring310000归属地地区ID
mobiletypestring中国移动运营商类别
areacodestring021城市区号
postcodestring200000邮政编码

返回示例:

JSON返回示例

{
  "code": 200,
  "msg": "success",
  "result": {
    "mobileprovice": "上海",
    "mobilearea": "上海",
    "proviceid": "310000",
    "areaid": "310000",
    "mobiletype": "中国移动",
    "areacode": "021",
    "postcode": "200000"
  }
}