Business 4-Factor Verification
Verify the consistency of a company name, Unified Social Credit Code (USCC), legal representative name, and legal representative ID number to ensure business information is authentic and prevent fraudulent registrations and risks.
Documentation
Business 4-Factor Verification
Feature Overview
The Business 4-Factor Verification API provides an efficient and accurate business information validation service. By inputting the company name, Unified Social Credit Code (USCC), legal representative name, and legal representative ID number, the system will verify in real-time whether these key details match. This service effectively helps users validate the authenticity and legality of businesses, reducing business risks caused by false information.
Use Cases
- Financial Risk Control: Used in P2P lending, supply chain finance, and bank account opening to verify the true identity of borrowing or partnering businesses and prevent fraud.
- Platform Onboarding: E-commerce and service provider platforms can use 4-factor verification during business user onboarding to ensure the authenticity of the business information and maintain a healthy platform ecosystem.
- Supplier Management: When selecting suppliers or partners, businesses can use this API to quickly verify the other party's qualifications and avoid collaboration risks.
- KYC/AML Compliance: Meets Anti-Money Laundering (AML) and Know Your Customer (KYC) compliance requirements, ensuring business operations align with regulatory standards.
- Contract Signing: Authenticates the signing entity before executing electronic contracts to ensure the legal validity of the agreement.
This API is an essential identity verification tool for enterprise-level applications, providing solid data support for various business scenarios.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"enterpriseName": "阿里巴巴(中国)有限公司",
"enterpriseNo": "91330100799655058B",
"legalName": "张勇",
"legalIdCard": "110105199003078887"
}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 |
|---|---|---|
| enterpriseName | string | 阿里巴巴(中国)有限公司 |
| enterpriseNo | string | 91330100799655058B |
| legalName | string | 张勇 |
| legalIdCard | string | 110105199003078887 |
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 | 企业名称/统一社会信用代码/法人姓名/法人身份证号一致 |