POSTPublicmobile-two-check-v2
手机二要素核验V2
手机二要素验证V2,核验手机号码与姓名一致性,确保用户身份真实有效,有效防范欺诈风险。
Endpoint
https://openapi.toolkk.com/mobile_two/check-v2
Rate limit
60 req/min
Timeout
5000 ms
手机二要素验证V2,核验手机号码与姓名一致性,确保用户身份真实有效,有效防范欺诈风险。
Endpoint
https://openapi.toolkk.com/mobile_two/check-v2
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 POST \
--url 'https://openapi.toolkk.com/mobile_two/check-v2' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"isp": {
"type": "string",
"example": "cmcc",
"description": "运营商 cmcc:移动 cucc:联通 ctcc:电信 cncc:广电"
},
"desc": {
"type": "string",
"example": "一致",
"description": "结果描述"
},
"result": {
"type": "string",
"example": "0",
"description": "/验证结果 0:一致;1:不一致;2:无记录"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.isp | object | {...} |
| data.isp.type | string | string |
| data.isp.example | string | cmcc |
| data.isp.description | string | 运营商 cmcc:移动 cucc:联通 ctcc:电信 cncc:广电 |
| data.desc | object | {...} |
| data.desc.type | string | string |
| data.desc.example | string | 一致 |
| data.desc.description | string | 结果描述 |
| data.result | object | {...} |
| data.result.type | string | string |
| data.result.example | string | 0 |
| data.result.description | string | /验证结果 0:一致;1:不一致;2:无记录 |
| message | string | success |