企业三要素核验
最后更新于:2022-04-02 08:16:40
## 企业三要素核验
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/d6/ab/d6abdbcb18db2c62c9d4a78993258e75_242x229.png)
> 核验企业名称、社会统一信用代码、法人一致性
## 接口费用([点击购买](https://market.topthink.com/product/371))
> 最低 0.08元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/enterprise/verify
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 | string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| keyword | 是 | string | 注册号/统一社会信用代码(注册号支持15位,统一社会信用代码支持18位) |
| name | 是 | string | 公司名称 |
| operName | 是 | string | 企业法人 |
### 返回参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| oper\_name | string | 匹配的企业法人 |
| name | string | 匹配的公司名称 |
| status | int | 匹配详情,1:全匹配;2:全不匹配;12:公司匹配,法人不匹配;13:公司不匹配,法人匹配 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->enterpriseVerify()
->withKeyword('注册号/统一社会信用代码')
->withName('公司名')
->withOperName('法人姓名')
->request();
dump($result);
```
返回数据示例:
~~~
{
"code":0,
"message":"操作成功",
"data":{
"oper_name": "匹配的法人姓名",
"name": "匹配的公司名称",
"status": 2
}
}
~~~
>[danger] 返回`code`为0时计费。
';