手机空号检测
最后更新于:2022-04-02 08:17:19
## 手机空号检测
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/c8/f2/c8f2a6bc258a5d054f32b592d0d34072_169x227.png)
根据客户提供的手机号,分类筛选出其中的空号、实号、风险号和沉默号。
## 接口费用([点击购买](https://market.topthink.com/product/82))
> 最低 0.0013元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/unn/batch_ucheck
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 |string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| mobiles| 是 | string | 检测手机号,1-50个,仅支持国内号码,11位 , 多个号码之间用英文半角逗号分隔|
### 返回`data`参数
|字段名|类型|说明|
|---|---|---|
|mobile|String|手机号,仅支持国内号码,11位|
|lastTime|String|时间戳,毫秒。样例:1522080000000|
|area|String|手机号所属区域。样例:省-市|
|numberType|String|手机号运营商类型。样例:中国移动 GSM|
|chargesStatus|String|是否收费,枚举值:1 :收费 0:不收费|
|status|String|检测结果,枚举值:0:空号 1:实号 2:停机 3:库无 4:沉默号 5:风险号|
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->unnBatchUcheck()
->withMobiles('手机号码')
->request();
```
返回结果示例:
~~~
{
message: "成功",
data: [
{
mobile: "182*****510",
lastTime: "1525257960000",
area: "河南-郑州",
numberType: "中国移动 GSM"
}
],
code: 0
}
~~~
';