接口大厅/聚合解析
返回接口大厅
79
API Endpoint
GET
聚合解析
正常支持 24 个平台:抖音、小红书、快手、B站、YouTube、TikTok、微博、西瓜视频、知乎、好看视频、微视、梨视频、AcFun、皮皮搞笑、皮皮虾、逗拍、虎牙、绿洲、美拍、全民小视频、全民K歌、六间房、新片场、最右
01
Request Info
请求信息
Endpoint
GET
https://cyapi.top/API/juhe_jx.php
Example
https://cyapi.top/API/juhe_jx.php
02
Parameters
1 params| Name | Type | Required | Description |
|---|---|---|---|
| url | string | 是 | 要解析的链接 |
03
Status Codes
状态码| Code | Meaning |
|---|---|
| 200 | 请求成功 |
| 403 | 无权限或密钥无效 |
| 404 | 接口不存在或参数错误 |
| 429 | 请求过于频繁,已达限额 |
| 500 | 服务器内部错误 |
04
Online Test
在线测试请求参数
响应结果
点击「立即测试」查看接口返回结果
05
Code Examples
调用示例<?php $url = 'https://cyapi.top/API/juhe_jx.php?url=' . urlencode($params['url'])'; $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://cyapi.top/API/juhe_jx.php'
params = {
'url': 'YOUR_VALUE'
}
response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://cyapi.top/API/juhe_jx.php');
const params = new URLSearchParams();
params.append('url', 'YOUR_VALUE');
url.search = params.toString();
fetch(url)
.then(res => res.text())
.then(data => console.log(data));