ICP Filing Query
Quickly query ICP filing records by entering a website domain, returning public information such as filing entity name, filing number, website name, and approval date, facilitating website compliance verification.
Documentation
API Capabilities
This API supports real-time querying of public ICP filing information for a given website domain. The returned data primarily includes the filing entity name, filing number, website name, filing status, and approval date, helping developers quickly obtain compliant website filing details.
Request and Response
- Request Parameters: Pass the domain to be queried (e.g.,
toolkk.com), and optionally specify pagination parameterspageNo(page number) andpageSize(items per page). - Response Result: Returns JSON formatted data, including pagination information and a list of filing records. The list provides fields such as entity name (
CompanyName), filing number (BeiAn), domain (Domain), and status (Status).
Use Cases
- Website Compliance Verification: In scenarios like business partnerships or platform onboarding, preliminarily verify the authenticity of a counterparty's website filing.
- Domain Asset Management: Assist businesses or individuals in organizing the filing status of their domains for asset inventory.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"url": "toolkk.com",
"pageNo": "1",
"pageSize": "10"
}Response Example
{
"code": 200,
"msg": "成功",
"taskNo": "example",
"data": {
"page": {
"pageNo": 1,
"pageSize": 10,
"recordCount": 1
},
"items": [
{
"Status": "A",
"CompanyName": "示例主体",
"BeiAn": "浙ICP备00000000号",
"Domain": "toolkk.com"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| url | string | toolkk.com |
| pageNo | string | 1 |
| pageSize | string | 10 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| msg | string | 成功 |
| taskNo | string | example |
| data | object | {...} |
| data.page | object | {...} |
| data.page.pageNo | number | 1 |
| data.page.pageSize | number | 10 |