Enterprise Relationship Graph
Query related information such as shareholders, key personnel, branches, and external investments of an enterprise using its name or Uniform Social Credit Code, assisting in preliminary background checks.
Documentation
API Capabilities
This API aims to help users quickly obtain the business relationship network of a target enterprise. By inputting the enterprise name or registration identifier, you can query structured relationship data such such as current shareholders, historical shareholders, key management personnel, branch offices, and external investment companies.
Request and Response
- Request Parameters: Provide
keyword, which supports the full enterprise name, Uniform Social Credit Code, registration number, or historical name. - Response Results: Returns JSON data containing relationship lists across multiple dimensions. For example,
shareholders(including shareholding ratio),priPersons(key personnel, including positions),branches, andinvestments(external investments).
Use Cases
- Business Information Organization: Quickly supplement core related party information when creating customer profiles or onboarding suppliers.
- Preliminary Background Assessment: Assist sales and marketing personnel in understanding the target enterprise's equity structure and external investment landscape.
- Enterprise Graph Construction: Provide foundational data node support for internal Customer Relationship Management (CRM) systems.
Usage Instructions and Limitations
- API data is compiled and aggregated from public sources, and there may be some update delays, so absolute real-time accuracy and completeness cannot be guaranteed.
- Query results are for internal information organization and preliminary business assessment reference only, and do not constitute any form of credit report, due diligence conclusion, investment advice, or legal compliance opinion.
- For major business decisions, legal disputes, or in-depth risk control scenarios, please obtain authoritative certification documents from official registration authorities.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"keyword": "杭州网尚科技有限公司"
}Response Example
{
"success": true,
"code": 200,
"msg": "成功",
"data": {
"shareholders": [
{
"name": "示例股东",
"fundedRatioStr": "10.00%"
}
],
"hisShareholders": [],
"priPersons": [
{
"name": "示例人员",
"position": "董事"
}
],
"branches": [],
"investments": []
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| keyword | string | 杭州网尚科技有限公司 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| success | boolean | true |
| code | number | 200 |
| msg | string | 成功 |
| data | object | {...} |
| data.shareholders | array | {"name":"示例股东","fundedRatioStr":"10.00%"} |
| data.hisShareholders | array | [] |
| data.priPersons | array | {"name":"示例人员","position":"董事"} |