553 调用

 | 110 阅读

接口:https://s.jixiejidiguan.top/api/music
请求:GET
格式:json

请求参数

参数说明
s搜索内容(必选)
limit列表数量,默认30(可选)
offset页数,默认0(可选)选择这个必须完善limit参数
type类型,默认1(可选)[1 单曲] [10 专辑] [100 歌手] [1000 歌单] [1002 用户]
示例:/api/music/{s}/{limit}/{offset}/{type}

返回参数

参数说明
data一组数据

使用示例

Python 代码

import requests  # 导入requests库,用于发送HTTP请求
# 定义请求的URL
url = "https://s.jixiejidiguan.top/api/music/上里与手抄卷"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 
# 专辑搜索
url = "https://s.jixiejidiguan.top/api/music/上里与手抄卷/30/0/10"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 
# 歌手
url = "https://s.jixiejidiguan.top/api/music/双笙(陈元汐)/30/0/100"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 
# 歌手
url = "https://s.jixiejidiguan.top/api/music/双笙(陈元汐)/30/0/100"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 
# 歌单
url = "https://s.jixiejidiguan.top/api/music/双网易云热歌榜/30/0/1000"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 
# 用户
url = "https://s.jixiejidiguan.top/api/music/双笙子/30/0/1002"
# 发送GET请求
response = requests.get(url)
# 打印响应的内容
print(response.text) 

标签: 暂无

本文作者:
版权声明:本博客所有文章除特别声明外,均采用 C BY-NC-SA 4.0 许可协议。转载请注明出处!

添加新评论