POSTPublicinvoice-title-list
企业开票信息查询
用于查询企业的开票信息,包括公司名称、税号、地址、电话、开户行及账号等详细资料,方便用户进行发票管理和财务核对。
Endpoint
https://openapi.toolkk.com/invoice/title/list
Rate limit
60 req/min
Timeout
5000 ms
用于查询企业的开票信息,包括公司名称、税号、地址、电话、开户行及账号等详细资料,方便用户进行发票管理和财务核对。
Endpoint
https://openapi.toolkk.com/invoice/title/list
Rate limit
60 req/min
Timeout
5000 ms
All endpoints are intended to be parsed with the standard code, message, and data structure.
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/invoice/title/list' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"count": {
"type": "number",
"example": 2
},
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"enterpriseName",
"taxNo",
"address",
"bankName",
"bankNo"
],
"properties": {
"taxNo": {
"type": "string",
"example": "91************05",
"description": "税号"
},
"bankNo": {
"type": "string",
"example": "5************01",
"description": "开户银行账号"
},
"address": {
"type": "string",
"example": "浙江省杭州市余杭区**********室 0571-2******1",
"description": "注册地址"
},
"bankName": {
"type": "string",
"example": "招商银行股份有限公司***********支行",
"description": "开户银行名称"
},
"enterpriseName": {
"type": "string",
"example": "杭州******有限公司",
"description": "公司名称"
}
}
}
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.count | object | {...} |
| data.count.type | string | number |
| data.count.example | number | 2 |
| data.items | object | {...} |
| data.items.type | string | array |
| message |
| string |
| success |