# 将下架歌曲统计接口
# 接口描述
用于查询到未来时间点将要下架的歌曲信息表。
# 调用接口
请求地址:/SONG/downTimeTrack.json
请求方法:POST
# 输入参数
参数名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
interval | numeric | 必传 | 秒数,表示查询多少秒之后过期的歌曲;如 604800 |
pageNo | numeric | 必传 | 页数;值范围[1,100] |
pageSize | numeric | 必传 | 每页数量;值范围[1,50] |
# 返回结果
{
"state": true,
"errcode": "",
"errmsg": "",
"data": {
"total": 101,
"result": [
{
"artist": [
{
"artistCode": "A11265401",
"gender": "未知",
"name": "优秀少年GOOD BOYS",
"artistType": 38,
"artistTypeName": "歌手",
"pic": "",
"region": ""
},
{
"artistCode": "A11294608",
"gender": "未知",
"name": "IDOL GIRLS 爱朵女孩",
"artistType": 38,
"artistTypeName": "歌手",
"pic": "",
"region": ""
}
],
"cpId": 51,
"pic": "https://img01.dmhmusic.com/0207/M00/AD/26/ChR4614Bi_6AVoczAAaDDPDiBJE023.jpg",
"title": "鼠我最快乐",
"duration": 181,
"assetId": "T10053024382",
"genre": "流行",
"albumTitle": "鼠我最快乐",
"id": "T10053024382",
"lang": "中文",
"afReplayGain": -4.269997,
"albumAssetCode": "P10003133909",
"releaseDate": "2019-12-20T00:00:00.000Z",
"isrc": null,
"sort": 1,
"meanVolume": -11.3,
"maxVolume": 0,
"lyric": "https://static01.dmhmusic.com/0207/M00/AD/24/ChR47F4BjFqANYwTAAAIxcUOlkU994.lrc",
"_trackId": 17154911,
"TSID": "T10053024382",
"allRate": ["320", "128", "3000", "64"],
"pushTime": "2019-12-24T00:00:00+08:00",
"downTime": "2020-12-19T00:00:00+08:00",
"bizList": ["sdk_cpm"],
"rateFileInfo": {
"64": {
"size": 1446305,
"format": "aac"
},
"128": {
"size": 2891605,
"format": "mp3"
},
"320": {
"size": 7228768,
"format": "mp3"
},
"3000": {
"size": 22398554,
"format": "flac"
}
}
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73