接口说明

快手小姐姐视频

请求地址
/api/v1/zyksxjj
请求方法
返回格式
JSON
调用次数
0
curl -X  \
  'https://apis.52oqq.cn/api/v1/zyksxjj' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json'
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://apis.52oqq.cn/api/v1/zyksxjj');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_KEY',
    'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
import requests

url = 'https://apis.52oqq.cn/api/v1/zyksxjj'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
}
response = requests.(url, headers=headers)
data = response.json()
fetch('https://apis.52oqq.cn/api/v1/zyksxjj', {
    method: '',
    headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    }
})
.then(res => res.json())
.then(data => console.log(data));

快速开始

  1. 注册账号并获取API密钥
  2. 阅读接口文档
  3. 发起API请求
  4. 处理返回数据