Business Registration Fuzzy Search
Provides a fuzzy search feature for business registration information, helping users quickly retrieve key details like company names and registration numbers to boost data retrieval efficiency.
Documentation
Feature Introduction
This API provides powerful fuzzy search capabilities for business registration information. Users can input incomplete keywords such as company names, unified social credit codes, or registration numbers, and the system will intelligently match and return a list of qualifying companies. The search results include core business data such as company name, legal representative, registered capital, date of establishment, and operating status. The API supports high-concurrency requests, ensuring real-time and accurate queries.
Application Scenarios
- Corporate Background Checks: Financial institutions or partners can quickly obtain the registration information of target companies during risk assessments.
- Market Analysis & Competitive Intelligence: Market researchers can use fuzzy search to gain insights into the distribution of companies and the competitive landscape within an industry.
- Customer Information Verification: Sales or operations teams can quickly verify a customer's corporate identity before communicating with them.
- Government Services & Regulation: Government departments can efficiently retrieve relevant company records when conducting corporate data statistics and regulatory reviews.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"keyword": "阿里巴巴",
"pageNum": 1,
"pageSize": 10
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"total": 1,
"list": [
{
"name": "阿里巴巴(中国)有限公司",
"creditCode": "91330100799655058B",
"legalPerson": "张勇"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| keyword | string | 阿里巴巴 |
| pageNum | number | 1 |
| pageSize | number | 10 |
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.total | number | 1 |
| data.list | array | {"name":"阿里巴巴(中国)有限公司","creditCode":"91330100799655058B","legalPerson":"张勇"} |