## 腾讯域名检测 ![](https://img.kancloud.cn/00/3f/003f6234b9d55e37f4918896e63ef4d7_128x128.png) > 检测域名或URL是否被腾讯系软件(安全应用中心)拦截,同时返回被检测域名的ICP备案信息。注意,type等于1或3表示未被拦截,其中type等于3表示该域名被腾讯信任。type等于0表示已被拦截。 ## 接口费用( [点击购买](https://market.topthink.com/product/166)) > 最低 0.003元/次 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/website/qq ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- | --- | | appCode| 是|string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | url| 是 | string | 域名地址| ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | type | int | 0 | 检测类型,0拦截,1-3通过 | | result | string | 已被拦截 | 检测结果 | | explain | string | 该网站含有未经证实的信息 | 检测说明 | | organization | string | 北京微播视界科技有限公司 | ICP主体信息 | | icpnumber | string | 京ICP备16016397号-3 | 网站ICP备案编号 | | url | string | https://douyin.com | 域名或链接 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->websiteQq() ->withUrl('https://douyin.com') ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功的返回", "data": { { "type":0, "result":"已被拦截", "explain":"该网站含有未经证实的信息", "organization":"北京微播视界科技有限公司", "icpnumber":"京ICP备16016397号-3", "url":"https://douyin.com" } } } ~~~