接口口说明明

小红书美图

请求求地址址
/api/v1/zyxhs
请求求方案法式
返回调回调格式式
JSON
调试用户次数数量据
0
curl -X  \
  'https://apis.52oqq.cn/api/v1/zyxhs' \
  -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/zyxhs');
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/zyxhs'
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/zyxhs', {
    method: '',
    headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    }
})
.then(res => res.json())
.then(data => console.log(data));

快速率开关始?/h3>

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