接口信息
总调用次数: 8
所属分类: 视频
请求方式: GET
响应格式: JSON
添加时间: 2026-05-24
更新时间: 2026-06-08
接口描述: 支持23个平台视频去水印
请求信息
请求地址
https://api.key5.site/API/video/juhe/index.php
示例地址
https://api.key5.site/API/video/juhe/index.php?url=https://v.douyin.com/irwsqD47/
请求参数
参数名 类型 必填 说明
此接口无需请求参数
返回示例
{
    "code": 200,
    "msg": "解析成功",
    "data": {
        "author": "天空日记",
        "uid": "skydiary.",
        "avatar": "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_70b9e34652ee8e6df8f4c6bf841ed4d0.jpeg?from=327834062",
        "like": 396602,
        "time": 1722069961,
        "title": "“好想和你走在黄昏的小路上 一起散散步聊聊天”#治愈系风景",
        "cover": "https://p3-sign.douyinpic.com/tos-cn-i-0813/o8cEdQDHEFAPIpCpJAENAsAAAeLdf9Zkmq8CgL~c5_300x400.webp?x-expires=1725732000&x-signature=evmSUmPw%2FTC28MQ8UBG9jceDwFk%3D&from=327834062_large&s=PackSourceEnum_DOUYIN_REFLOW&se=false&sc=cover&biz_tag=aweme_video&l=2024082502282430BD14EF260D5BD17358",
        "url": "https://aweme.snssdk.com/aweme/v1/play/?video_id=v0d00fg10000cqib7b7og65gj3rbgfqg&ratio=720p&line=0",
        "music": {
            "author": "樱井攸木",
            "avatar": "https://p26.douyinpic.com/aweme/1080x1080/aweme-avatar/tos-cn-avt-0015_bd8785fbfb87015a9096314c0e928ef0.jpeg?from=327834062"
        }
    }
}
状态码说明
状态码 说明
200请求成功,服务器已成功处理了请求。
403服务器拒绝请求。这可能是由于缺少必要的认证凭据(如API密钥)或权限不足。
404请求的资源未找到。请检查您的请求地址是否正确。
429请求过于频繁。您已超出速率限制,请稍后再试。
500服务器内部错误。服务器在执行请求时遇到了问题。
调用示例
<?php
$url = 'https://api.key5.site/API/video/juhe/index.php';
$params = [
];
$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://api.key5.site/API/video/juhe/index.php"
params = {
}

response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://api.key5.site/API/video/juhe/index.php');
const params = {
};

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));
curl "https://api.key5.site/API/video/juhe/index.php"
联系站长