企业开票信息查询
最后更新于:2022-04-02 08:16:45
## 企业开票信息查询
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/cb/28/cb28d83ee75925da3f8c7960288d3e78_169x159.png)
> 根据公司名称/社会统一信用代码查询企业开票信息
## 接口费用([点击购买](https://market.topthink.com/product/330))
> 最低 0.2元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/enterprise/creditcode
```
### 请求参数
|名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 | string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| keyword | 是 | String | 公司名称或社会统一信用代码 |
### 返回参数
| 名称 | 类型 | 说明 |
| --- | --- | --- |
| name | string | 企业名称 |
| creditcode | string | 社会统一信用代码(纳税人识别号) |
| econkind | string | 企业类型 |
| status | string | 企业状态 |
| address | string | 地址 |
| tel | string | 联系电话 |
| bank | string | 开户行 |
| bankaccount | string | 开户行账号 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->enterpriseCreditcode()
->withKeyword('9132059455117770X5')
->request();
dump($result);
```
返回数据示例:
~~~
{
"code":0,
"message":"操作成功",
"data":{
"name":"天聚地合(苏州)数据股份有限公司",
"creditcode":"9132059455117770X5",
"econkind":"股份有限公司(非上市)",
"status":"在业",
"address":"苏州工业园区启月街288号紫金东方大厦307室",
"tel":"0512-62391880",
"bank":"浙商银行苏州分行营业部",
"bankaccount":"3050020010120100129207"
}
}
~~~
>[danger] 返回`code`为0时计费。
';