# 艺人详情信息接口
# 接口描述
提供艺人身份相关的信息。
# 调用地址
请求地址:/ARTIST/artistInfo.json
请求方法:POST
# 输入参数
参数名 | 参数类型 | 是否必传 | 说明 |
---|---|---|---|
artistCode | string | 必传 | 艺人 artistCode,多个艺人用逗号分隔(最大 100 大于 100 会被舍弃) |
# 返回结果
{
"state": true,
"errcode": "",
"errmsg": "",
"data": [
{
"birthday": "1986-05-14",
"gender": "男",
"introduce": "许嵩 2006年大学期间开始以网名“Vae”在......",
"weight": 60,
"pic": "https://img01.dmhmusic.com/0206/M00/70/E2/ChR47FtM6_qAYdtpAAJgVE2U6UI268.jpg",
"blood": "A型",
"artistCode": "A10048883",
"birthPlace": "",
"nativeList": ["中国大陆"],
"name": "许嵩",
"region": "内地",
"height": 180,
"albumTotal": 34,
"trackTotal": 110
}
]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23