GETPublicbankcard3c-verify
银行卡三要素核验
核验银行卡号、持卡人姓名和身份证号是否一致,确保信息真实有效,防范金融风险。
Endpoint
https://openapi.toolkk.com/bankcard3c/verify
Rate limit
60 req/min
Timeout
5000 ms
核验银行卡号、持卡人姓名和身份证号是否一致,确保信息真实有效,防范金融风险。
Endpoint
https://openapi.toolkk.com/bankcard3c/verify
Rate limit
60 req/min
Timeout
5000 ms
All endpoints are intended to be parsed with the standard code, message, and data structure.
{ code, message, data }
curl --request GET \
--url 'https://openapi.toolkk.com/bankcard3c/verify' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"msg": {
"type": "string",
"example": "一致",
"description": "验证结果"
},
"desc": {
"type": "string",
"example": "认证信息匹配",
"description": "验证结果描述信息"
},
"result": {
"type": "number",
"example": "0",
"description": "0 一致,1 不一致,2未认证,3 已注销"
},
"order_no": {
"type": "string",
"example": "572752020851781221221",
"description": "订单号"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.msg | object | {...} |
| data.msg.type | string | string |
| data.msg.example | string | 一致 |
| data.msg.description | string | 验证结果 |
| data.desc | object | {...} |
| data.desc.type |
| string |
| string |
| data.desc.example | string | 认证信息匹配 |
| data.desc.description | string | 验证结果描述信息 |
| data.result | object | {...} |
| data.result.type | string | number |
| data.result.example | string | 0 |
| data.result.description | string | 0 一致,1 不一致,2未认证,3 已注销 |
| data.order_no | object | {...} |
| data.order_no.type | string | string |
| data.order_no.example | string | 572752020851781221221 |
| data.order_no.description | string | 订单号 |
| message | string | success |