# 专辑详情信息接口
# 接口描述
用于查看专辑的详细信息。
# 调用方法
请求接口:/ALBUM/albumInfo.json
请求方法:POST
# 输入参数
参数名 | 参数类型 | 是否必传 | 说明 |
---|---|---|---|
productId | string | 必传 | 专辑 productId,多个可以用,分开 (最多 10 个,多余 10 个会丢弃) |
# 返回结果
{
"state": true,
"errcode": "",
"errmsg": "",
"data": [
{
"albumAssetCode": "P10002077754",
"artist": [
{
"artistCode": "A10047720",
"birthday": "1983-07-17",
"gender": "男",
"name": "薛之谦",
"artistType": 38,
"artistTypeName": "歌手",
"pic": "https://img01.dmhmusic.com/0101/M00/F8/AE/ChR45V7XEJWAZJ8KAAL8wj6aS4w115.jpg",
"region": ""
}
],
"releaseDate": "2018-04-18T00:00:00.000Z",
"cpId": 23,
"introduce": "",
"genre": "流行",
"upc": "9555150719094",
"pic": "https://img01.dmhmusic.com/0102/M00/FB/D2/ChR45F7zhz6AAmQ0ABfwN8oS_sw095.jpg",
"type": 2,
"title": "摩天大楼",
"lang": "中文",
"_score": 1.0000005,
"pushTime": "2019-03-05T16:43:14+08:00",
"downTime": "2037-01-01T00:00:00+08:00",
"available": true,
"availableErrMsg": "",
"trackList": [
{
"duration": 230,
"artist": [
{
"artistCode": "A10047720",
"birthday": "1983-07-17",
"gender": "男",
"name": "薛之谦",
"artistType": 38,
"artistTypeName": "歌手",
"pic": "https://img01.dmhmusic.com/0101/M00/F8/AE/ChR45V7XEJWAZJ8KAAL8wj6aS4w115.jpg",
"region": ""
}
],
"assetId": "T10044298014",
"isrc": "CN-Z50-18-00330",
"sort": 1,
"title": "摩天大楼"
}
]
}
]
}
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
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
← 专辑列表快速查询接口 专辑歌曲信息接口 →