POSTPublicmobile-2-validate
手机二要素核验
本接口提供手机号与姓名二要素实时核验服务,精准验证用户身份信息,确保数据真实有效。
Endpoint
https://openapi.toolkk.com/mobile/2-validate
Rate limit
60 req/min
Timeout
5000 ms
本接口提供手机号与姓名二要素实时核验服务,精准验证用户身份信息,确保数据真实有效。
Endpoint
https://openapi.toolkk.com/mobile/2-validate
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/2-validate' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"desc": {
"type": "string",
"example": "一致"
},
"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.desc | object | {...} |
| data.desc.type | string | string |
| data.desc.example | string | 一致 |
| data.result | object | {...} |
| data.result.type | string | string |
| data.result.example |
| string |
| 0 |
| data.result.description | string | 0:一致;1:不一致;2:无记录 |
| message | string | success |