封面API
提供封面图片的搜索。
根目录:/api/v1/cover
音乐封面
端点
- HTTP 方法:
GET
- 路径:
music
- 参数:
?title=Title&album=Album&artist=Artist
参数支持为空 - 请求体:无
例:https://api.lrc.cx/api/v1/cover/album?title=海阔天空&album=海阔天空&artist=Beyond
响应
- 类型:
application/json
- 响应
{
"title": "title",
"img": "cover_url",
}
专辑封面
端点
- HTTP 方法:
GET
- 路径:
album
- 参数:
?album=Album&artist=Artist
参数支持为空 - 请求体:无
例:https://api.lrc.cx/api/v1/cover/album?album=海阔天空&artist=Beyond
响应
- 类型:
application/json
- 响应
{
"album": "album",
"img": "cover_url",
}
歌手头像
端点
- HTTP 方法:
GET
- 路径:
artist
- 参数:
?artist=Artist
参数支持为空 - 请求体:无
例:https://api.lrc.cx/api/v1/cover/artist?artist=Beyond
响应
- 类型:
application/json
- 响应
{
"artist": "artist",
"img": "avatar_url",
}