根据域名获取该域名的历史备案信息。
根据域名获取该域名的历史备案信息。
| 参数名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
| domain | string | 是 | 域名 | |
| page | integer | 否 | 页码,默认1 |
[
{
"name": "domain",
"type": "string",
"required": true,
"description": "域名",
"example": ""
},
{
"name": "page",
"type": "integer",
"required": false,
"description": "页码,默认1",
"example": ""
}
]{"openapi":"3.1.1","info":{"title":"域名备案历史记录查询","description":"根据域名获取该域名的历史备案信息。","version":"1.0.0"},"paths":{"/apis/gateway?api=icphist":{"get":{"summary":"域名备案历史记录查询","description":"根据域名获取该域名的历史备案信息。","parameters":[{"name":"domain","in":"query","required":true,"schema":{"type":"string"},"description":"域名"},{"name":"page","in":"query","required":false,"schema":{"type":"integer"},"description":"页码,默认1"}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"}}}}}},"post":{"summary":"域名备案历史记录查询","description":"根据域名获取该域名的历史备案信息。","parameters":[{"name":"domain","in":"query","required":true,"schema":{"type":"string"},"description":"域名"},{"name":"page","in":"query","required":false,"schema":{"type":"integer"},"description":"页码,默认1"}],"responses":{"200":{"description":"成功","content":{"application/json":{"schema":{"type":"object"}}}}}}}},"servers":[{"url":"https://api.souxiaocha.com","description":"当前访问入口(https)"}]}
{"success":true,"data":{"domain":"douhao.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"change":"","type":"企业","company":"浙江花田网络有限公司","icp":"浙ICP备18032409号-24","icp_time":"2022-06-28 11:21:09","homes":"","name":""}]},"generated_at":"2026-08-03 16:58:33"}https://api.souxiaocha.com/apis/gateway?api=icphistGET https://api.souxiaocha.com/apis/gateway?api=icphist apikey=你的API密钥&domain=请填写domain&page=请填写page
GET 参数放在查询字符串中。参数值请替换为实际有效值。
| 参数名 | 类型 | 必填 | 说明 | 示例 |
|---|---|---|---|---|
domain | string | 是 | 域名 | |
page | integer | 否 | 页码,默认1 |
{"success":true,"data":{"domain":"douhao.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"change":"","type":"企业","company":"浙江花田网络有限公司","icp":"浙ICP备18032409号-24","icp_time":"2022-06-28 11:21:09","homes":"","name":""}]},"generated_at":"2026-08-03 16:58:33"}根据域名获取该域名的历史备案信息。
https://api.souxiaocha.com/apis/gateway?api=icphist
GET / POST(业务参数 GET 通过 URL 传递,POST 支持表单或 JSON)
调用需携带平台密钥(用户中心「令牌管理」获取,SK- 开头):
key=SK-你的密钥X-API-Key: SK-你的密钥| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| domain | string | 是 | 域名 |
| page | integer | 否 | 页码,默认1 |
[
{"name": "domain", "type": "string", "required": true, "description": "域名"},
{"name": "page", "type": "integer", "required": false, "description": "页码,默认1"}
]
成功返回示例:
{"success":true,"data":{"domain":"douhao.com","total_pages":1,"current_page":1,"page_size":10,"list":[{"change":"","type":"企业","company":"浙江花田网络有限公司","icp":"浙ICP备18032409号-24","icp_time":"2022-06-28 11:21:09","homes":"","name":""}]},"generated_at":"2026-08-03 16:58:33"}
失败返回示例:
{"success":false,"error":"missing_domain","message":"请提供域名参数"}
| 参数名 | 类型 | 说明 |
|---|---|---|
| data.domain | string | 查询域名 |
| data.total_pages | integer | 总页数 |
| data.current_page | integer | 当前页码 |
| data.page_size | integer | 每页记录数 |
| data.list[].change | string | 变更项(0=公司,1=主页,2=备案号,3=审核时间,4=网站名称) |
| data.list[].type | string | 主办单位性质 |
| data.list[].company | string | 主办单位名称 |
| data.list[].icp | string | 备案/许可证号 |
| data.list[].icp_time | string | 审核时间 |
| data.list[].homes | string | 主页地址 |
| data.list[].name | string | 网站名称 |
curl "https://api.souxiaocha.com/apis/gateway?api=icphist?key=SK-你的密钥&domain=douhao.com"
上游业务级错误:
| code | msg | 描述 |
|---|---|---|
| 400 | missing_domain | 缺少域名参数 |
| 405 | method_not_allowed | 仅支持GET |
| 500 | api_request_failed | 请求异常 |
| 502 | query_failed | 查询失败 |
平台级错误(errcode):11001 缺少密钥 / 11002 密钥无效或已禁用 / 11005 接口禁用 / 11006 接口维护 / 11010 积分不足 / 11018 请求方式不允许。
失败时请以响应体中的 code / errcode 与 msg 判断。
2026-09-24
curl "https://api.souxiaocha.com/apis/gateway?api=icphist?key=SK-你的密钥&domain=douhao.com"
// 结果将在此处显示