根据手机号码前七位,查询手机号码所属地区、运营商(含虚拟)、邮政编码等。
接口地址: https://whyta.cn/api/tx/mobilelocal
返回格式: JSON
请求方式: GET
请求示例:https://whyta.cn/api/tx/mobilelocal?key=你的APIKEY&phone=1522150
接口备注:4
参数 | 类型 | 必填 | 示例值 | 说明 |
---|---|---|---|---|
key | string | 是 | 你的APIKEY | |
phone | string | 是 | 1522150 | 手机号码 |
参数 | 类型 | 示例 | 说明 |
---|---|---|---|
mobileprovice | string | 上海 | 归属地省份 |
mobilearea | string | 上海 | 归属地地区 |
proviceid | string | 310000 | 归属地省份ID |
areaid | string | 310000 | 归属地地区ID |
mobiletype | string | 中国移动 | 运营商类别 |
areacode | string | 021 | 城市区号 |
postcode | string | 200000 | 邮政编码 |
{
"code": 200,
"msg": "success",
"result": {
"mobileprovice": "上海",
"mobilearea": "上海",
"proviceid": "310000",
"areaid": "310000",
"mobiletype": "中国移动",
"areacode": "021",
"postcode": "200000"
}
}