一、什么是企业银行账户归属地查询接口?
传入需要查询的卡号,支持传入企业名称,查询银行账号归属地信息,可支持国内中、农、工、建、交、邮储银行等100多家商业银行、全国31省市农村信用社及农村商业银行,部分银行可以支持开户行查询。
二、如何用Java进行调用?
1.我们以阿里云接口为例:

java
接口地址:https://market.aliyun.com/detail/cmapi00072529#sku=yuncode6652900003
public static void main(String[] args) {
String host = "https://kzbankc.market.alicloudapi.com";
String path = "/api/bank_info/company/query";
String method = "POST";
String appcode = "你自己的AppCode";
Map<String, String> headers = new HashMap<String, String>();
//最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
headers.put("Authorization", "APPCODE " + appcode);
//根据API的要求,定义相对应的Content-Type
headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
Map<String, String> querys = new HashMap<String, String>();
Map<String, String> bodys = new HashMap<String, String>();
bodys.put("bankcard", "银行卡号");
bodys.put("companyName", "公司名称");
try {
/**
* 重要提示如下:
* HttpUtils请从
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
* 下载
*
* 相应的依赖请参照
* https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
*/
HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);
System.out.println(response.toString());
//获取response的body
//System.out.println(EntityUtils.toString(response.getEntity()));
} catch (Exception e) {
e.printStackTrace();
}
}
成功返回示例代码:
java
{
"msg": "成功",
"success": true,
"code": 200,
"data": {
"orderNo": "202511282252391521421",
"province": "浙江省",
"city": "杭州",
"bankname": "平安银行",
"bankabc": "PAB"
}
}
Bankname: 银行名称
Bankabc: 银行名称缩写
Province: 省份
City: 城市