文档
测试

搜索歌单

GET
/searchPlayList

接口描述

搜索歌单

请求参数

参数名
类型
描述
必填
offset
int
检索结果的偏移量,即从第几个结果开始
必填
limit
int
搜索结果数量限制
必填
keywords
string
检索关键词
必填

响应参数

参数名
类型
描述
必填
code
int
response情况,200表示成功
必填
result
object
查询结果
必填
songs
array
保存结果歌曲的数组
必填
songCount
int
结果包含歌曲的数量
必填

说明 / 示例

```json { "code": 200, "result": [ { "description": "云音乐中每天热度上升最快的100首单曲,每日更新。", "subscribedCount": 2952891, "createTime": 1404115136883, "updateTime": 1588205592615, "image": "https://p2.music.126.net/DrRIg6CrgDfVLEph9SNh7w==/18696095720518497.jpg", "songCount": 100, "playCount": 3097507584, "name": "云音乐飙升榜", "tags": [ "流行", "欧美", "榜单" ], "id": 19723756, "userId": 48171, }, { "description": "云音乐新歌榜:云音乐用户一周内收听所有新歌(一月内最新发行) 官方TOP排行榜,每天更新。", "subscribedCount": 2952891, "createTime": 1404115136883, "updateTime": 1588205592615, "image": "https://p2.music.126.net/N2HO5xfYEqyQ8q6oxCw8IQ==/18713687906568048.jpg", "songCount": 100, "playCount": 3097507584, "name": "云音乐飙升榜", "tags": [ "流行", "欧美", "榜单" ], "id": 3779629, "userId": 48171, } ] } } ```