This commit is contained in:
muzihuaner
2026-03-18 13:21:42 +08:00
parent e397c951bc
commit 9d84d7847a

View File

@@ -300,21 +300,21 @@
}, },
{ {
"name": "ICP备案查询", "name": "ICP备案查询",
"description": "查询网站的ICP备案信息返回主办单位、网站名称、备案号等信息", "description": "查询网站的ICP备案信息支持多个数据源查询返回ICP备案号、主办单位、网站名称、审核时间等详细信息",
"path": "/api/icp/index.php", "path": "/api/icp/index.php",
"method": "GET", "method": "GET",
"params": [ "params": [
{ {
"name": "url", "name": "domain",
"type": "string", "type": "string",
"required": true, "required": true,
"description": "要查询的网站URL或域名" "description": "要查询的域名支持带http://或https://前缀,会自动清理)"
}, },
{ {
"name": "type", "name": "type",
"type": "string", "type": "string",
"required": false, "required": false,
"description": "返回格式[json|text]默认为json。json返回完整备案数据text返回格式化文本" "description": "返回格式[json|text]默认为json。json返回JSON格式备案数据text返回格式化文本"
} }
] ]
}, },