DOCUMENTATION
VIP视频解析
GET
60次/分钟
https://api.71ywl.com/api/index.php?qy=vipvideo
在线使用
请求参数
| 参数名 | 类型 | 必填 | 示例 | 说明 |
| url |
string |
是 |
https://m.v.qq.com/x/m/play?cid=mzc002000dwqiqo&vid=k41012tydm3 |
vip视频链接 |
请求示例
https://api.71ywl.com/api/index.php?qy=vipvideo?url=请求数据
响应示例
{"status": 200, "video": "https://jx.ccc/?url=https%3A%2F%2Fvideo.com"}
返回参数
| 参数名 | 类型 | 说明 |
| status |
string |
状态码,200表示成功 |
| video |
string |
解析后的vip视频播放地址 |
响应码
| 状态码 | 说明 |
| 200 |
请求成功 |
| 400 |
请求参数错误 |
代码示例
curl
curl -X GET "https://api.71ywl.com/api/index.php?qy=vipvideo?url=xxx"
php
<?php
$url = "https://api.71ywl.com/api/index.php?qy=vipvideo?url=xxx";
$response = file_get_contents($url);
echo $response;
?>
python
import requests
url = "https://api.71ywl.com/api/index.php?qy=vipvideo?url=xxx"
response = requests.get(url)
print(response.json())
javascript
fetch("https://api.71ywl.com/api/index.php?qy=vipvideo?url=xxx")
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));