Bank Card 3-Factor Verification
Verify the consistency of a bank card number, cardholder name, and ID number to ensure data authenticity and prevent financial risks.
Documentation
Feature Overview
This API provides real-time verification for three key bank card elements: bank card number, cardholder name, and ID number. By integrating this API, you can quickly verify whether the bank card information submitted by users matches the real-name data in bank systems and government databases. This effectively prevents identity theft and fraud, ensuring business compliance and security.
Use Cases
- Financial Account Opening: Verify the authenticity and legality of user identity information during bank card binding, account creation, and loan applications.
- Payment Risk Control: Identify potential bank card theft risks during the payment process to safeguard funds and reduce transaction fraud rates.
- Real-Name Authentication: Ensure the accuracy of user information for services requiring real-name verification, such as member registration, cash withdrawals, and reward point redemptions.
- Anti-Fraud & Risk Management: Effectively detect and block fraudulent activities using fake identities or stolen information, comprehensively enhancing business risk control capabilities and protecting enterprise and user assets.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"name": "张三",
"idcard": "110105199003078887",
"bankcard": "6228480402564890018"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"result": "一致",
"desc": "姓名/身份证/银行卡一致"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| name | string | 张三 |
| idcard | string | 110105199003078887 |
| bankcard | string | 6228480402564890018 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.result | string | 一致 |
| data.desc | string | 姓名/身份证/银行卡一致 |