Bank Card 4-Element Verification
Verify the authenticity and consistency of bank card information using four elements: name, ID number, bank card number, and registered phone number, effectively preventing fraud risks.
Documentation
Bank Card 4-Element Verification API
Overview
This API provides online verification for the four essential elements of a bank card: name, ID number, bank card number, and registered phone number. Using this API, you can quickly and accurately verify whether the bank card information provided by a user is authentic and matches their corresponding identity details. This helps identify fake identities and invalid bank cards, significantly improving business security and compliance.
Use Cases
- Financial Lending: Verify the authenticity of bank card information when users apply for loans to prevent fraud using fake or stolen cards.
- Payment & Settlement: Perform identity and card matching verification before users bind a bank card for payments or withdrawals, ensuring funds flow to the correct account.
- User Registration & KYC: Validate the accuracy of user identity and bank card details during registration or real-name authentication processes to meet regulatory requirements.
- Risk Management: Help enterprises build robust risk control systems to effectively identify and block potential fraudulent activities, protecting the assets of both the business and its users.
- Insurance Services: Verify the bank card information of beneficiaries or policyholders during underwriting or claims processing to ensure fund security.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"name": "张三",
"idcard": "110105199003078887",
"mobile": "13800138000",
"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 |
| mobile | string | 13800138000 |
| 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 | 姓名/身份证/手机号/银行卡一致 |