Business 3-Factor Verification
This API verifies the consistency of three core business elements: company name, Unified Social Credit Code, and legal representative name, ensuring the authenticity of corporate information.
Documentation
Feature Overview
The "Business 3-Factor Verification" API provides a fast and accurate way to verify the authenticity of core company information. By inputting the company name, Unified Social Credit Code, and legal representative's name, the system cross-references authoritative data sources in real time to determine if the three elements perfectly match. This helps identify fraudulent business information and mitigates operational risks.
Use Cases
- Merchant Onboarding: For e-commerce platforms and payment gateways, verify the qualifications of newly onboarded merchants to ensure their business information is authentic and valid.
- Supply Chain Finance Risk Control: Financial institutions can verify the authenticity of a corporate entity before providing financing services, effectively preventing fraud.
- Contract Signing Verification: When signing electronic contracts online, verify the accuracy of the signing party's corporate information to ensure the legal validity of the contract.
- Business Information Maintenance: Regularly or periodically verify the information of partner companies to ensure data accuracy and promptly identify and handle any anomalies.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{}Response Example
{
"code": 200,
"data": {
"creditNo": {
"type": "boolean",
"example": true,
"description": "统一信用代码是否一致(true: 一致, false:不一致)"
},
"companyName": {
"type": "boolean",
"example": false,
"description": "公司名称是否一致(true: 一致, false:不一致)"
},
"legalPerson": {
"type": "boolean",
"example": false,
"description": "法人名称是否一致(true: 一致, false:不一致)"
}
},
"message": "success"
}Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.creditNo | object | {...} |
| data.creditNo.type | string | boolean |
| data.creditNo.example | boolean | true |
| data.creditNo.description | string | 统一信用代码是否一致(true: 一致, false:不一致) |
| data.companyName | object | {...} |