API代理服务为视频采集系统提供安全代理访问。购买套餐并绑定IP后,通过专属 key 即可调用接口。
key
GET/POST https://caiji.u55u.cn/api/api.php
1
2
除 act、key、from 外,所有参数会透传给上游API。
?act=1
&key=你的密钥
# act=1 无筛选 curl "https://caiji.u55u.cn/api/api.php?act=1&key=YOUR_KEY" # act=2 按来源筛选 curl "https://caiji.u55u.cn/api/api.php?act=2&key=YOUR_KEY&from=source_name"
import requests key = "YOUR_KEY" url = "https://caiji.u55u.cn/api/api.php" params = {"act": 1, "key": key} resp = requests.get(url, params=params, timeout=30) data = resp.json() print(data)
$key = 'YOUR_KEY'; $url = 'https://caiji.u55u.cn/api/api.php?act=1&key=' . urlencode($key); $response = file_get_contents($url); $data = json_decode($response, true); print_r($data);
const key = 'YOUR_KEY'; const url = `https://caiji.u55u.cn/api/api.php?act=1&key=${encodeURIComponent(key)}`; fetch(url) .then(res => res.json()) .then(data => console.log(data));
注册账号
获取API密钥
购买套餐
支付自动开通
绑定IP
控制台添加IP
调用接口
按示例请求
获取数据
代理返回结果