# 艺人的歌曲接口

# 接口描述

查询艺人拥有的歌曲信息列表。

# 调用方法

请求接口:/ARTIST/artistGetSong.json
请求方法:POST

# 输入参数

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

# 返回结果

{
    "state": true,
    "errcode": "",
    "errmsg": "",
    "data": {
        "total": 110,
        "result": [
            {
                "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": "内地"
                    }
                ],
                "cpId": 23,
                "pic": "https://img01.dmhmusic.com/0412/M00/FE/9E/ChAKEl_IzTOAfYR8AAHWRa6yrVE226.jpg",
                "title": "如果当时",
                "duration": 316,
                "assetId": "T10038826793",
                "genre": "流行",
                "albumTitle": "自定义",
                "id": "T10038826793",
                "lang": "中文",
                "afReplayGain": -3.590004,
                "albumAssetCode": "P10001630060",
                "releaseDate": "2009-01-01T00:00:00.000Z",
                "isrc": "HKE571110001",
                "sort": 1,
                "meanVolume": -11.8,
                "maxVolume": -0.2,
                "lyric": "https://static01.dmhmusic.com/0412/M00/FE/9E/ChAKEl_IzTOASB77AAAHZ44QZPQ253.lrc",
                "pay_model": 2,
                "_trackId": 11506312,
                "TSID": "T10038826793",
                "allRate": ["3000", "64", "320", "128"],
                "pushTime": "2018-03-14T21:12:27+08:00",
                "downTime": "2037-01-01T00:00:00+08:00",
                "bizList": ["sdk_cpm"],
                "rateFileInfo": {
                    "64": {
                        "size": 2530233,
                        "format": "aac"
                    },
                    "128": {
                        "size": 5170998,
                        "format": "mp3"
                    },
                    "320": {
                        "size": 12761973,
                        "format": "mp3"
                    },
                    "3000": {
                        "size": 34670298,
                        "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
Last Updated: 12/25/2020, 2:41:19 PM