## 恶意链接检测(停售) ![](https://img.kancloud.cn/1e/d4/1ed40ed6dda23c2816abf1ff0ccdbe90_200x200.png) > 实时检测URL是否为欺诈、病毒、网络钓鱼、垃圾软件的恶意链接。结果result=>1即为恶意链接。 ## 接口费用( [点击购买](https://market.topthink.com/product/206)) > 最低 0.002元/次 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/website/cheatlink ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | url| string | 是 | 链接地址 | ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | result | int | 0 | 检测结果,1为是 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->websiteCheatlink() ->withUrl('https://www.baidu.com/') ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "result": 0 } ] } ~~~