Bank CNAPS Code Lookup
Search Chinese bank branches and CNAPS clearing codes by bank, card number, province, city, or keyword, including addresses and phone numbers.
Documentation
Overview
Search bank branches in China by bank name, card number, province, city, or keyword. The API returns the CNAPS clearing code, full branch name, region, address, and phone number. Provide at least one of bank, bankcard, province, city, or key. Up to the first five pages are available.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"bank": "中国工商银行",
"city": "深圳市",
"page": "1"
}Response Example
{
"code": "SUCCESS",
"message": "成功",
"data": {
"page": "1",
"totalpage": "1",
"totalcount": "1",
"record": [
{
"bankCode": "102584000000",
"lname": "中国工商银行股份有限公司深圳某支行",
"bank": "中国工商银行",
"province": "广东省",
"city": "深圳市",
"addr": "深圳市某区",
"tel": "0755-00000000"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| bank | string | 中国工商银行 |
| city | string | 深圳市 |
| page | string | 1 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | 成功 |
| data | object | {...} |
| data.page | string | 1 |
| data.totalpage | string | 1 |
| data.totalcount | string | 1 |
| data.record | array | {"bankCode":"102584000000","lname":"中国工商银行股份有限公司深圳某支行","bank":"中国工商银行","province":"广东省","city":"深圳市","addr":"深圳市某区","tel":"0755-00000000"} |