解析皮皮虾视频,获取下载链接+详细信息
http://api.xuewutheme.com/api/video/pipixia?url=https://h5.pipix.com/s/als5NGk0EIM/
解析皮皮虾视频,获取下载链接+详细信息
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| apikey string | 整数 | string |
用户开通的apikey |
| url string | 整数 | string |
皮皮虾视频链接 |
| 参数名 | 类型 | 描述 |
|---|---|---|
| code integer | integer |
返回的状态码 |
| data object | object |
返回的数据/数据对象 |
| msg string | string |
返回的消息 |
| time string | string |
请求时间 |
| data.author string | string |
作者 |
| data.avatar string | string |
头像 |
| data.title string | string |
标题 |
| data.cover string | string |
封面 |
| data.url string | string |
视频URL |
{
"code": 200,
"msg": "解析成功",
"time": "2025-09-20 16:29:33",
"data": {
"author": "牛牛爱吃嫩草",
"avatar": "https://p9-ppx-sign.byteimg.com/tos-cn-i-8gu37r9deh/eed64d5ef5c94bacbf1eaeaa1e35ac72~tplv-f3gpralwbh-image.image?lk3s=1e780327&x-expires=1789892973&x-signature=omOD5fFKU9Rl%2Fn4Z%2FSkj64xO9Ng%3D",
"title": "",
"cover": "https://p6-ppx-sign.byteimg.com/tos-cn-p-0076/910f33481a984cef872cda484a0391df_1751662745~tplv-f3gpralwbh-noop-v4:720:1280:q60.webp?lk3s=1e780327&x-expires=1789892973&x-signature=pLkbFL5M%2Bg0uaLV%2BRA51FqUycP4%3D",
"url": "https://v3-cdn-tos.ppxvod.com/0a6fb885b9ea0cf4d9afe7bb01e19162/68ce740c/video/tos/cn/tos-cn-ve-0076/oIP8QsF1HIN3RpfQAgDAIAanx3oggBrEFEEIft/?a=1319&ch=0&cr=0&dr=6&cd=0%7C0%7C0%7C0&cv=1&br=1333&bt=1333&cs=0&ds=6&eid=2048&ft=aT_J9QQqU-zfJ0ZWo0OW_EklpPiX44woRVJEVhPspbPD-Ipz&mime_type=video_mp4&qs=0&rc=Ozc2OGRnODY4OTw2NGU5OkBpM25rc205cmc3NDMzNGYzM0AyLmIuYDNeXjAxLzI0XzAyYSNvcC1xMmRzLWhhLS1kMWFzcw%3D%3D&btag=c0000e00010000&dy_q=1758356973&feature_id=59cb2766d89ae6284516c6a254e9fb61&l=202509201629339EF34D5B60BAA368AC10",
"imgurl": []
}
}
curl -X GET \
"https://api.example.com/v1/users/12345" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." \
-H "Content-Type: application/json"
import requests
url = "https://api.example.com/v1/users/12345"
headers = {
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch(
'https://api.example.com/v1/users/12345',
{
method: 'GET',
headers: {
'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...',
'Content-Type': 'application/json'
}
}
);
const data = await response.json();
console.log(data);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.example.com/v1/users/12345");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$headers = array();
$headers[] = "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...";
$headers[] = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo $result;
curl_close($ch);
| 状态码 | 描述 |
|---|---|
| 100 | 您的apikey值为空! |
| 101 | 您的apikey值不存在! |
| 103 | 当前接口为实名认证后可用,请您先进行实名! |
| 104 | 请求频率超限! |
| 105 | 接口不存在或已下线! |
| 106 | 您的余额不足,请及时充值! |
| 107 | 您当前的接口免费使用次数已用完,请明日再来! |
| 109 | 您的账号已被封禁,不可使用任何接口! |
| 110 | 接口维护中,请稍后再试! |
| 111 | 请求参数不完整,请检查后再次访问! |
{
"code": 1001,
"message": "用户不存在",
"data": null
}