# 艺人查询接口
# 接口描述
接口用于获取艺人列表,获取的艺人按艺人热度排序。
支持按以下条件分组查询艺人:
类型 | 支持值 |
---|---|
艺人性别 | 男,女,组合,乐队,未知 |
艺人地区 | 内地、港台、欧美、拉丁、韩国、日本、东亚、东南亚、非洲、中亚、南亚、中东、其他 |
艺人名字首字母 | 包括 A-Z 和 other(A-Z 之外的艺人) |
# 调用地址
请求地址:/TRACKLIST/hotArtistList.json
请求方法:POST
# 参数说明
参数名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
artistGender | string | 非必传 | 艺人性别; |
值:男,女,组合,乐队,未知;
多个值用,分隔;
不填写表示所有。 |
| artistRegion | string | 非必传 | 艺人地区;
值:内地、港台、欧美、拉丁、韩国、日本、东亚、东南亚、非洲、中亚、南亚、中东、其他
多个值用,分隔。 |
| artistFristLetter | string | 非必传 | 入值艺人的首字母查询相关的英文名和中文名;当入值 other 表示排除 A-Z 的其他
示例:A、a、other |
| pageNo | numeric | 必传 | 页数;值范围[1,200] |
| pageSize | numeric | 必传 | 每页数量;值范围[1,200] |
# 返回结果
{
"state": true,
"errcode": "",
"errmsg": "",
"data": {
"total": 633,
"result": [
{
"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
},
{}
]
}
}
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25