1、热点热词
请求说明
接口地址: /api/open/api/explosive/hotkey
请求方式:GET
输入参数说明
参数 |
类型 |
说明 |
必填项 |
缺省值 |
acid |
int |
领域 ID |
否 |
|
输出参数说明
参数 |
类型 |
说明 |
apid |
int |
平台 ID |
acid |
int |
领域 ID |
ranking |
int |
排行 |
key |
string |
爆词 |
sumread |
int |
阅读数 |
sumcomment |
int |
评论数 |
sumcount |
int |
文章数 |
完整返回结果示例
{
"code": "Success",
"msg": "请求成功",
"data": [
{
"apid": 0,
"acid": 123456,
"ranking": 1,
"key": "string",
"sumread": 123456,
"sumcomment": 0,
"sumcount": 123
},
...
]
}
2、实时领域爆文分布
请求说明
接口地址: /api/open/api/explosive/realtimehointcategory
请求方式:POST
Content-Type:application/json
{
"apid": 1,
"mtype": 1,
"timetype": 1
}
输入参数说明
参数 |
类型 |
说明 |
必填项 |
缺省值 |
apid |
int |
平台 ID |
否 |
|
mtype |
int |
类型:0=全部、1=文章、2=图集、3=视频 |
否 |
|
timetype |
int |
时间:1=今天、3=三天、7=七天 |
否 |
1 |
输出参数说明
参数 |
类型 |
说明 |
acdes |
string |
名称 |
bwint |
int |
爆文数 |
timetype |
int |
时间 |
hmcttype |
int |
类型 |
完整返回结果示例
{
"code": "Success",
"msg": "请求成功",
"data": [
{
"acdes": "娱乐",
"bwint": 3290,
"timetype": 1,
"hmcttype": 3
},
...
]
}
3、实时发布时间段爆文分布
请求说明
接口地址: /api/open/api/explosive/realtimehotinpubtime
请求方式:POST
Content-Type:application/json
{
"apid": 0,
"mtype": 1,
"timetype": 1
}
输入参数说明
参数 |
类型 |
说明 |
必填项 |
缺省值 |
apid |
int |
平台 ID |
否 |
|
mtype |
int |
类型:0=全部、1=文章、2=图集、3=视频 |
否 |
|
timetype |
int |
时间:1=今天、3=三天、7=七天 |
否 |
1 |
输出参数说明
参数 |
类型 |
说明 |
hourint |
int |
小时 |
bwint |
int |
爆文数 |
timetype |
int |
时间 |
完整返回结果示例
{
"code": "Success",
"msg": "请求成功",
"data": [
{
"hourint": 0,
"bwnumber": 91,
"timetype": 1
},
...
]
}
4、今日爆文区间内词云
请求说明
接口地址: /api/open/api/explosive/realtimehotkeycloud
请求方式:POST
Content-Type:application/json
{
"acid": 0,
"startTime": "string",
"emdTime": "string"
}
输入参数说明
参数 |
类型 |
说明 |
必填项 |
缺省值 |
acid |
int |
领域 ID |
否 |
|
startTime |
string |
开始时间 |
否 |
|
emdTime |
string |
结束时间 |
否 |
|
输出参数说明
参数 |
类型 |
说明 |
key |
int |
爆词 |
count |
int |
数量 |
完整返回结果示例
{
"code": "Success",
"msg": "请求成功",
"data": [
{
"key": "中国",
"count": 8
},
...
]
}