Phone, Name, and ID Verification
Verify user identity using three key elements: phone number, full name, and ID number. Ensure data authenticity and prevent fraud.
Documentation
Feature Overview
The Phone, Name, and ID Verification service is designed to help businesses quickly and accurately verify the authenticity and consistency of user identity information. By cross-checking the submitted phone number, full name, and ID number, it determines whether the three elements match, effectively authenticating the user's identity and mitigating business risks. This service relies on authoritative and reliable data sources, returning verification results in real-time to ensure data timeliness and accuracy.
Use Cases
- User Registration & Login: Ensure new or logging-in users have real identities, preventing malicious registrations and account takeovers.
- Financial Risk Control: Verify user identities during account opening, lending, payments, and other financial services to effectively identify potential fraud.
- E-commerce Transactions: Authenticate buyer or seller identities to enhance transaction security and reduce disputes.
- Government Services: Verify citizen identities during online government service processing to ensure regulatory compliance.
- Content Moderation: Verify the identity of publishers on user-generated content platforms to enforce real-name registration requirements.
Usage Instructions
To call this API, you need to provide the user's phone number, full name, and ID number. The API will return the verification result, which typically includes one of the following statuses:
- Match: The phone number, name, and ID number all match.
- Mismatch: At least one of the three elements (phone number, name, or ID number) does not match.
- Unable to Verify: The provided identity information cannot be found in the authoritative data sources, or the system is currently busy.
Please ensure you have obtained explicit user authorization before performing any identity verification.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"name": "张三",
"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 |
|---|---|---|
| name | string | 张三 |
| 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 | 姓名/身份证/手机号一致 |