星瑞API

最右解析

正常

无水印解析最右视频!

GET JSON 调用: 5 更新: 2026-05-08

接口详情

请求地址
https://gy.owyun.cn/api/zuiyou/
示例地址
https://gy.owyun.cn/api/zuiyou/?apikey=你的API密钥&url=http://web-v01.izuiyou.com/zyvqwz/264/fe/46/7f44-49dc-11f1-a869-9614fd0e2995?auth_key=1778249246-0-0-370589113f4162f1d2e88b4474e65743
请求方式
GET
返回格式
application/json

请求参数说明

参数名 必填 类型 说明 示例值
apikey 必填 string 用户密钥
url 必填 string 视频分享链接 https://share.xiaochuankeji.cn/hybrid/share/post?pid=374993792&vid=2373058429&zy_to=applink&share_count=1&m=acb5093985182c2383b29e4929886f0d&d=16fbf9bf1d54807d1904cb9c9d0cfba14a2c486e879119571c9ec1a26e5e1db1&app=zuiyou&recommend=r0&name=n0&title_type=t0

示例代码

<?php
$url = 'https://gy.owyun.cn/api/zuiyou/';
$params = [
    'apikey' => 'YOUR_VALUE',
    'url' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests

url = "https://gy.owyun.cn/api/zuiyou/"
params = {
    "apikey": "YOUR_VALUE",
    "url": "YOUR_VALUE",
}
response = requests.get(url, params=params)
print(response.text)
const url = new URL("https://gy.owyun.cn/api/zuiyou/");
const params = {
  "apikey": "YOUR_VALUE",
  "url": "YOUR_VALUE",
};

Object.keys(params).forEach((key) => url.searchParams.append(key, params[key]));

fetch(url)
  .then((response) => response.text())
  .then((data) => console.log(data))
  .catch((error) => console.error("Error:", error));

返回示例

暂无返回示例,可在“在线调试”中查看实时返回结果。

在线调试

此处将显示接口返回结果...
API列表