手机号码归属地
最后更新于:2022-04-02 08:17:26
## 手机号码归属地
>[danger]### 免费接口,每日100次免费调用,会员可不限次数调用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/7b/d4/7bd48c890545a2ad49734264694b2c8e_185x228.png =x180)
> 根据手机号码或手机号码的前7位,查询手机号码归属地信息,如省份 、城市、运营商等。
每日100次免费调用
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/telecom/location
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 |string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| phone | 是 | int | 需要查询的手机号码或手机号码前7位 |
### 返回参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| province | string | 省份 |
| city | string | 城市,(北京、上海、重庆、天津直辖市可能为空) |
| areacode | string | 区号,(部分记录可能为空) |
| zip | string | 邮编,(部分记录可能为空) |
| company | string | 运营商 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->telecomLocation()
->withPhone('手机号码')
->request();
dump($result);
```
返回数据示例:
~~~
{
"code":0,
"message":"Return Successd!",
"data":{
"province":"浙江",
"city":"杭州",
"areacode":"0571",
"zip":"310000",
"company":"中国移动",
}
}
~~~
';