# 艺人专辑接口

# 接口描述

可通过艺人查询此艺人关联的专辑信息数据。

# 调用地址

请求地址:/ARTIST/artistGetAlbum.json
请求方法:POST

# 输入参数

参数名 参数类型 是否必传 说明
artistCode string 必传 艺人 artistCode
sortMode numeric 必传 排序模式 1:按热度排列 2:按发行时间正序排列 3:按发行时间倒序排列
pageNo numeric 必传 页数,只能为 1
pageSize numeric 必传 每页数量;值范围[1,50]

# 返回结果

{
    "state": true,
    "errcode": "",
    "errmsg": "",
    "data": {
        "total": 34,
        "result": [
            {
                "albumAssetCode": "P10001630060",
                "artist": [
                    {
                        "artistCode": "A10048883",
                        "birthday": "1986-05-14",
                        "gender": "男",
                        "name": "许嵩",
                        "artistType": 38,
                        "artistTypeName": "歌手",
                        "pic": "https://img01.dmhmusic.com/0206/M00/70/E2/ChR47FtM6_qAYdtpAAJgVE2U6UI268.jpg",
                        "region": "内地"
                    }
                ],
                "releaseDate": "2009-01-01T00:00:00.000Z",
                "cpId": 23,
                "introduce": "",
                "genre": "流行",
                "upc": "9787881014876",
                "pic": "https://img01.dmhmusic.com/0412/M00/FE/9E/ChAKEl_IzTOAfYR8AAHWRa6yrVE226.jpg",
                "type": 1,
                "title": "自定义",
                "lang": "中文",
                "downTime": "2037-01-01T00:00:00+08:00",
                "trackList": [
                    {
                        "duration": 316,
                        "artist": [
                            {
                                "artistCode": "A10048883",
                                "birthday": "1986-05-14",
                                "gender": "男",
                                "name": "许嵩",
                                "artistType": 38,
                                "artistTypeName": "歌手",
                                "pic": "https://img01.dmhmusic.com/0206/M00/70/E2/ChR47FtM6_qAYdtpAAJgVE2U6UI268.jpg",
                                "region": "内地"
                            }
                        ],
                        "assetId": "T10038826793",
                        "isrc": "HKE571110001",
                        "sort": 1,
                        "title": "如果当时"
                    },
                    {}
                ],
                "pushTime": "2018-03-14T21:12:27+08:00",
                "available": true,
                "availableErrMsg": ""
            },
            {}
        ]
    }
}
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
Last Updated: 12/25/2020, 2:41:19 PM