Bank Card 3-Element Verification
Provides a bank card 3-element verification API service, enabling developers to quickly verify bank card information and integrate it into business systems.
Documentation
Bank Card 3-Element Verification API Overview
The Bank Card 3-Element Verification API helps developers quickly process bank card authentication within their systems. It returns structured results and is ideal for scenarios such as real-name authentication, onboarding approval, and risk control interception.
Applicable Scenarios
- Integrate bank card 3-element verification capabilities into internal systems, SaaS platforms, automated workflows, or admin dashboards.
- Suitable for business scenarios requiring stable API calls, standardized responses, and orchestratable interface capabilities.
- We recommend combining this with rate limiting, failure retries, and result caching strategies to improve overall integration stability.
Integration Recommendations
- Before integration, confirm the request parameter format, authentication method, and error code handling logic.
- For high-frequency verification scenarios, it is recommended to implement log tracking, timeout control, and idempotency handling.
- If the results are used for risk control or automated decision-making, we recommend making secondary judgments based on business rules rather than relying solely on the API response.
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 | 姓名/身份证/银行卡一致 |