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
{
"companyName": "阿里巴巴(中国)有限公司",
"creditNo": "91330100799655058B",
"legalPerson": "张勇"
}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 |
|---|---|---|
| companyName | string | 阿里巴巴(中国)有限公司 |
| creditNo | string | 91330100799655058B |
| legalPerson | string | 张勇 |
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 | 企业名称/统一社会信用代码/法人姓名一致 |