通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。
通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。
| 参数名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
| domain | string | 是 | 查询域名,不需要带 http(s):// 和 www |
[
{
"name": "domain",
"type": "string",
"required": true,
"description": "查询域名,不需要带 http(s):// 和 www",
"example": ""
}
]{"openapi":"3.1.1","info":{"title":"ICP域名备案实时查询","description":"通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。","version":"1.0.0"},"paths":{"/apis/gateway?api=icp":{"get":{"summary":"ICP域名备案实时查询","description":"通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。","parameters":[{"name":"domain","in":"query","required":true,"schema":{"type":"string"},"description":"查询域名,不需要带 http(s):// 和 www"}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"}}}}}},"post":{"summary":"ICP域名备案实时查询","description":"通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。","parameters":[{"name":"domain","in":"query","required":true,"schema":{"type":"string"},"description":"查询域名,不需要带 http(s):// 和 www"}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"}}}}}}}},"servers":[{"url":"https://api.souxiaocha.com","description":"当前访问入口(https)"}]}
{"success":true,"data":{"domain":"wengbi.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"domain":"wengbi.com","owner":"","company":"浙江花田网络有限公司","type":"企业","icp":"浙ICP备18032409号-24","icp_main":"浙ICP备18032409号","icp_time":"2024-05-07 14:33:11","domain_id":110005879787,"limit_access":"","main_id":110001641490,"service_id":110003902041}]},"generated_at":"2026-07-30 11:51:00"}https://api.souxiaocha.com/apis/gateway?api=icpGET https://api.souxiaocha.com/apis/gateway?api=icp apikey=你的API密钥&domain=请填写domain
GET 参数放在查询字符串中。参数值请替换为实际有效值。
| 参数名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
domain | string | 是 | 查询域名,不需要带 http(s):// 和 www |
{"success":true,"data":{"domain":"wengbi.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"domain":"wengbi.com","owner":"","company":"浙江花田网络有限公司","type":"企业","icp":"浙ICP备18032409号-24","icp_main":"浙ICP备18032409号","icp_time":"2024-05-07 14:33:11","domain_id":110005879787,"limit_access":"","main_id":110001641490,"service_id":110003902041}]},"generated_at":"2026-07-30 11:51:00"}通过输入域名查询指定域名的ICP备案信息,包含主办单位、备案号、审核时间等。
https://api.souxiaocha.com/apis/gateway?api=icp
GET / POST(业务参数 GET 通过 URL 传递,POST 支持表单或 JSON)
调用需携带平台密钥(用户中心「令牌管理」获取,SK- 开头):
key=SK-你的密钥X-API-Key: SK-你的密钥| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| domain | string | 是 | 查询域名,不需要带 http(s):// 和 www |
[
{"name": "domain", "type": "string", "required": true, "description": "查询域名,不需要带 http(s):// 和 www"}
]
成功返回示例:
{"success":true,"data":{"domain":"wengbi.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"domain":"wengbi.com","owner":"","company":"浙江花田网络有限公司","type":"企业","icp":"浙ICP备18032409号-24","icp_main":"浙ICP备18032409号","icp_time":"2024-05-07 14:33:11","domain_id":110005879787,"limit_access":"","main_id":110001641490,"service_id":110003902041}]},"generated_at":"2026-07-30 11:51:00"}
失败返回示例:
{"success":false,"error":"missing_domain","message":"请提供域名参数(domain)"}
| 参数名 | 类型 | 说明 |
|---|---|---|
| data.domain | string | 查询域名 |
| data.total_pages | integer | 总页数 |
| data.current_page | integer | 当前页码 |
| data.page_size | integer | 每页记录数 |
| data.list[].domain | string | 域名 |
| data.list[].owner | string | 负责人 |
| data.list[].company | string | 主办单位名称 |
| data.list[].type | string | 主办单位性质 |
| data.list[].icp | string | 备案/许可证号 |
| data.list[].icp_main | string | 主备案号 |
| data.list[].icp_time | string | 审核时间 |
| data.list[].limit_access | string | 限制访问 |
curl "https://api.souxiaocha.com/apis/gateway?api=icp?key=SK-你的密钥&domain=douhao.com"
上游业务级错误:
| code | msg | 描述 |
|---|---|---|
| 400 | missing_domain | 缺少domain参数 |
| 405 | method_not_allowed | 仅支持GET |
| 500 | api_request_failed | 第三方接口请求异常 |
| 500 | query_failed | 查询失败 |
平台级错误(errcode):11001 缺少密钥 / 11002 密钥无效或已禁用 / 11005 接口禁用 / 11006 接口维护 / 11010 积分不足 / 11018 请求方式不允许。
失败时请以响应体中的 code / errcode 与 msg 判断。
2026-09-24
curl "https://api.souxiaocha.com/apis/gateway?api=icp?key=SK-你的密钥&domain=douhao.com"
// 结果将在此处显示