Phone and Name Verification V2
Phone and Name Verification V2 checks the match between a mobile phone number and a user's name to ensure authentic identities and effectively prevent fraud.
Documentation
Features
The Phone and Name Verification V2 API is designed to quickly and accurately determine whether a user-submitted mobile phone number and name match. This API utilizes authoritative data sources to ensure the reliability and real-time accuracy of verification results, effectively reducing the risk of fake identities. It supports carrier-level data verification, guarantees data security and privacy, and provides stable and efficient identity verification services.
Use Cases
- User Registration and Login: Verify the phone number and name when users register new accounts or perform sensitive operations (e.g., changing passwords, linking bank cards) to ensure identity authenticity and enhance account security.
- Financial Risk Control: Enable financial institutions to verify user identities during loan approvals, account openings, and transactions to prevent fraud and comply with regulatory requirements.
- Marketing Campaigns: Verify participant identities during real-name marketing campaigns to prevent rule violations like reward farming and arbitrage, ensuring fairness.
- Content Management: Enforce real-name authentication for users publishing sensitive content to improve platform content quality, ensure compliance, and maintain a healthy online environment.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"idcard": "110105199003078887",
"mobile": "13800138000"
}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 |
|---|---|---|
| idcard | string | 110105199003078887 |
| mobile | string | 13800138000 |
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 | 身份证号与手机号一致 |