Skip to content

Domain ICP Record Query

1. Basic Usage

Note: Due to imperfect crawler implementation, this interface may intermittently fail to return results.

Base API URL

txt
https://icp.zeapi.ink/query/<domain>

Query ICP records via GET request:

txt
https://icp.zeapi.ink/query/qq.com

Shell Request Example:

shell
curl https://icp.zeapi.ink/query/qq.com

Force Cache Refresh
Add no_cache parameter to URL:

txt
https://icp.zeapi.ink/query/qq.com?no_cache

Shell Request (Force Refresh):

shell
curl https://icp.zeapi.ink/query/qq.com?no_cache

2. Request Parameters

ParameterTypeRequiredDefaultDescription
<domain>stringYesNoneDomain to query (e.g. qq.com)

3. JSON Response Format

Success Response Example:

json
{  
    "code": 200,  
    "data": [  
        {  
            "domain_approve_date": "2022-09-06 15:51:52",  
            "domain_content_approved": "Culture, Religion, Publication, News",  
            "domain_licence": "粤B2-20090059",  
            "domain_name": "qq.com",  
            "domain_owner": "Shenzhen Tencent Computer Systems Co., Ltd.",  
            "domain_status": "No",  
            "domain_type": "Enterprise",  
            "website_licence": "粤B2-20090059-5"  
        }  
    ],  
    "msg": "success",  
    "total": 1  
}

Error Response Examples:

json
// No records found  
{ "code": 500, "msg": "Query error" }  

// Invalid domain/enterprise name  
{ "code": 500, "msg": "Query error" }

4. Response Field Descriptions

FieldTypeDescription
codeintStatus code (200=success, 404=not found, 400=invalid request)
msgstringResult message
dataarrayQuery results array (may contain multiple records)
data[].domain_approve_datestringDomain approval timestamp (YYYY-MM-DD HH:MM:SS)
data[].domain_content_approvedstringApproved content categories (e.g. Culture, News)
data[].domain_licencestringDomain registration license number
data[].domain_namestringQueried domain name
data[].domain_ownerstringDomain owner (enterprise/individual name)
data[].domain_statusstringDomain status ("Yes"/"No")
data[].domain_typestringRegistration type ("Enterprise"/"Individual")
data[].website_licencestringWebsite registration license number
totalintTotal number of records returned

Released under the MIT License.