POST已开放bank-enterprise-account-info
对公账户归属地查询
提供对公银行账户开户行归属地查询服务,帮助用户快速获取账户所属省市等详细信息,支持企业风控与合规审查。
请求地址
https://openapi.toolkk.com/bank/enterprise/account/info
默认限流
60 次/分钟
超时时间
5000 ms
提供对公银行账户开户行归属地查询服务,帮助用户快速获取账户所属省市等详细信息,支持企业风控与合规审查。
请求地址
https://openapi.toolkk.com/bank/enterprise/account/info
默认限流
60 次/分钟
超时时间
5000 ms
所有接口都建议按 code、message、data 的标准结构进行解析。
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/bank/enterprise/account/info' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"count": {
"type": "number",
"example": 1
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"city": {
"type": "string",
"example": "杭州",
"description": "城市"
},
"bankAbc": {
"type": "string",
"example": "",
"description": "银行名称缩写"
},
"bankName": {
"type": "string",
"example": "",
"description": "银行名称"
},
"province": {
"type": "string",
"example": "浙江省",
"description": "省份"
}
}
},
"example": [
{
"city": "杭州",
"bankAbc": "",
"bankName": "",
"province": "浙江省"
}
]
}
},
"message": "success"
}以下字段根据示例 JSON 自动提取,仅作接入参考。
| 字段路径 | 类型 | 示例值 |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.count | object | {...} |
| data.count.type | string | number |
| data.count.example | number | 1 |
| data.items | object | {...} |
| data.items.type | string | array |
| message | string |
| success |