标识业务TOP10统计-年

## 接口名称 标识业务TOP10统计-年 ## 接口描述 标识业务TOP10统计(按年)。 ## 接口地址 https://idr.gdsinsing.com/stat/top10/year ## 调用方式 |方法|数据类型| |-|-| |[X] GET|[ ] form-data| |[ ] POST|[ ] x-www-form-urlencoded| |[ ] PUT|[ ] raw| |[ ] DELETE|| ## 参数说明 |参数名|类型|必填|说明| |-|-|-|-| |year|Int|否|统计年份,默认为当前年。| ## 返回结果 详见:[API接口返回结果说明](doc:uPPE78uC) #### 成功返回 ```JavaScript { "create": [{ //注册量TOP10 "prefix": "88.168.139", "total": 3317246 }], "query": [{ //解析量TOP10 "prefix": "88.168.139", "total": 3317246 }], "remove": [{ //注销量TOP10 "prefix": "88.168.139", "total": 3317246 }], } ``` #### 失败返回 详见:[API接口失败返回](doc:AYrPnJLE) ## 调用例子 ``` JavaScript var settings = { "url": "https://idr.gdsinsing.com/stat/top10/year?year=2021", "method": "GET", "timeout": 0, }; $.ajax(settings).done(function (response) { console.log(response); }); ```