标识业务TOP10统计-日
## 接口名称
标识业务TOP10统计-日
## 接口描述
标识业务TOP10统计(按日)。
## 接口地址
https://idr.gdsinsing.com/stat/top10/date
## 调用方式
|方法|数据类型|
|-|-|
|[X] GET|[ ] form-data|
|[ ] POST|[ ] x-www-form-urlencoded|
|[ ] PUT|[ ] raw|
|[ ] DELETE||
## 参数说明
|参数名|类型|必填|说明|
|-|-|-|-|
|date|String|否|统计日期(yyyy-MM-dd),默认为今天。|
## 返回结果
详见:[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/date?date=2020-12-2",
"method": "GET",
"timeout": 0,
};
$.ajax(settings).done(function (response) {
console.log(response);
});
```