Business 2-Factor Verification
Verify the match between a company's Unified Social Credit Code and registered business name to ensure corporate authenticity and compliance.
Documentation
Features
The Business 2-Factor Verification API is designed to verify the authenticity and consistency of company information by comparing the submitted Unified Social Credit Code (USCC) with the registered business name. This API quickly and accurately validates whether core corporate identity details match, effectively mitigating risks associated with fraudulent business information. It utilizes authoritative data sources for real-time comparison, ensuring the reliability and timeliness of the verification results. It is suitable for various business scenarios requiring corporate identity confirmation, helping companies operate compliantly and reduce business risks.
Use Cases
- Financial Risk Control: Banks and lending platforms can verify corporate identities before providing loans or financing services to prevent fraud.
- Supply Chain Management: Verify supplier credentials during platform onboarding to ensure transaction security.
- Contract Signing: Validate the authenticity of the signing party's corporate information when executing online electronic contracts.
- Government Services: Government departments at all levels can conduct corporate information verification when processing business-related services to improve efficiency and accuracy.
- Business Partnerships: Verify the legality and authenticity of partner companies when establishing new business relationships.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"enterpriseName": "阿里巴巴(中国)有限公司",
"enterpriseNo": "91330100799655058B"
}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 |
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 | 企业名称与统一社会信用代码一致 |