绿标域名认证
网址是否开通绿标

接口地址 https://api.kit9.cn/api/green_label/api.php

请求方式 GET/POST

返回格式 JSON

HTTP/HTTPS 支持

请求示例 https://api.kit9.cn/api/green_label/api.php?url=https://api.kit9.cn

参数说明

参数 必填 类型 说明
urlString网址

返回参数

名称 类型 说明
code number 状态码 200为正常,其它为异常
msg string 状态说明
data array 数组
state string 认证类型 0为绿标 1为不是绿标
result string 认证结果

返回示例

{
    "code": 200,
    "msg": "success",
    "data": {
        "state": 1,
        "result": "未检测到绿标认证"
    }
}