返回首页
 多平台短视频无水印解析 GET 正常
06月18日 创建 更新于 07-02 16:38
聚合短视频无水印解析接口,支持抖音、快手、小红书、视频号、B站、西瓜等主流平台,传入作品分享链接即可提取无水印原视频、封面、背景音乐、作品文案,采用GET请求。
总调用次数
359
接口地址
https://gulangsc.cn/API/sp/juhe.php
请求示例
https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/
参数说明
url string 链接
代码示例
curl -X GET 'https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/'
import requests

url = 'https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/'
response = requests.request('GET', url)
print(response.text)
package main

import (
    "fmt"
    "io"
    "net/http"
)

func main() {
    url := "https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/"
    req, _ := http.NewRequest("GET", url, nil)
    res, _ := http.DefaultClient.Do(req)
    defer res.Body.Close()
    body, _ := io.ReadAll(res.Body)
    fmt.Println(string(body))
}
fetch('https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/', {
  method: 'GET',
})
  .then(res => res.json())
  .then(console.log)
  .catch(console.error);
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Main {
    public static void main(String[] args) throws Exception {
        var client = HttpClient.newHttpClient();
        var request = HttpRequest.newBuilder()
            .uri(URI.create("https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/"))
            .method("GET", HttpRequest.BodyPublishers.noBody())
            .build();
        var response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.body());
    }
}
<?php
$url = 'https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
#!/bin/bash
# 使用 curl
curl -X GET 'https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/'

# 或使用 wget
wget -qO- 'https://gulangsc.cn/API/sp/juhe.php?url=https://v.douyin.com/alkqlV6er1Y/'
在线测试
链接
实时响应预览
正在获取实时响应...
元信息
API ID
#24
更新于
07-02 16:38
请求方式
GET
鉴权要求
无需 Key
QPS 状态
3/s
预览状态
已开启