请求方式:POST
请求路径:/v1/live_data_statistics/online_pull_stream
请求JSON参数
domain | list | 域名列表 | 是 | |
appname | list | 应用名称 | 否 | |
streamname | list | 流名称 | 否 | |
start_time | long | 开始时间 | 是 | unix时间戳,单位s,最多支持历史14天数据的查询,接口时间查询范围最大为1h |
end_time | long | 结束时间 | 是 | unix时间戳,单位s,最多支持历史14天数据的查询,接口时间查询范围最大为1h |
响应Json参数
code | int | 返回码 | |
message | string | 返回信息 | |
result | list | 返回结果列表 | |
result[*].time | long | 最新时间(unix时间戳,单位s) | |
result[*].peerIsp | string | 运营商 | |
result[*].peerIp | string | 拉流ip | |
result[*].stream | string | 流名 | |
result[*].appName | string | 应用名 | |
result[*].peerProvince | string | 拉流ip归属地(省) | |
result[*].peerCity | string | 拉流ip归属地(市) | |
result[*].channel | string | 域名 | |
result[*].pullStartTime | long | 推流开始时间 | (unix时间戳,单位s) |
result[*].pullEndTime | long | 推流结束时间 | (unix时间戳,单位s) |
示例
路径:https://open.ctcdn.cn/api/v1/live_data_statistics/online_pull_stream
请求文档
{ "start_time": 1631541917, "domain": [ "ctyun.cn" ], "end_time": 1631543317 }
响应文档
{ "result": [ { "peerIsp": "其他", "peerIp": "1.1.1.1", "stream": "xxxxxxxxxx", "peerCity": "北京市", "appName": "rtmp", "peerProvince": "北京市", "channel": "ctyun.cn", "pullStartTime": 1631541826, "time": 1631542046, "pullEndTime": 0 }, { "peerIsp": "其他", "peerIp": "1.1.1.1", "stream": "ssssssssss", "peerCity": "北京市", "appName": "rtmp", "peerProvince": "北京市", "channel": "ctyun.cn", "pullStartTime": 1631541676, "time": 1631542026, "pullEndTime": 0 } ], "code": 100000, "message": "success" }