Phone & Name Verification
This API provides real-time verification of a user's phone number and name, accurately authenticating identity information to ensure data is genuine and valid.
Documentation
Feature Overview
The Phone & Name Verification V2 API is designed to provide highly efficient and accurate matching and verification of a user's phone number and name. By inputting a user's phone number and real name, the system queries and cross-references telecom carrier data in real time, returning a verification result indicating whether the phone number and name match. Building upon V1, this version features performance optimizations and expanded data sources, delivering a higher verification success rate and faster response times to effectively mitigate business risks associated with fake identity information.
Use Cases
- Financial Risk Control: Verify the authenticity of user identities during bank account openings, loan applications, and payment transactions to effectively prevent fraud.
- Platform Real-Name Authentication: Authenticate user identities during registration, login, content publishing, or large transactions to ensure regulatory compliance and data security.
- Government Services: Verify applicant identity information during online service processing to improve efficiency and security.
- E-commerce & Logistics: Perform secondary identity confirmation during sensitive operations (e.g., changing a linked phone number or withdrawing funds) to protect user assets.
- Membership Management: Verify the authenticity of member information during onboarding to improve the quality of customer data.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"name": "张三",
"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 |
|---|---|---|
| name | string | 张三 |
| 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 | 姓名与手机号一致 |