POSTPublicbank-enterprise-account-info
对公账户归属地查询
提供对公银行账户开户行归属地查询服务,帮助用户快速获取账户所属省市等详细信息,支持企业风控与合规审查。
Endpoint
https://openapi.toolkk.com/bank/enterprise/account/info
Rate limit
60 req/min
Timeout
5000 ms
提供对公银行账户开户行归属地查询服务,帮助用户快速获取账户所属省市等详细信息,支持企业风控与合规审查。
Endpoint
https://openapi.toolkk.com/bank/enterprise/account/info
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/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"
}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 | 1 |
| data.items | object | {...} |
| data.items.type | string | array |
| message |
| string |
| success |