POST公開中invoice-title-list
企业开票信息查询
用于查询企业的开票信息,包括公司名称、税号、地址、电话、开户行及账号等详细资料,方便用户进行发票管理和财务核对。
エンドポイント
https://openapi.toolkk.com/invoice/title/list
レート制限
毎分 60 回
タイムアウト
5000 ms
用于查询企业的开票信息,包括公司名称、税号、地址、电话、开户行及账号等详细资料,方便用户进行发票管理和财务核对。
エンドポイント
https://openapi.toolkk.com/invoice/title/list
レート制限
毎分 60 回
タイムアウト
5000 ms
すべての API は code、message、data の標準構造で解析する前提です。
{ 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"
}以下の項目はサンプル JSON から自動抽出した参考情報です。
| パス | 型 | サンプル値 |
|---|---|---|
| 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 |