接口大厅/七猫短剧
返回接口大厅
70 API Endpoint GET

七猫短剧

正常

七猫短剧接口解析

Status
正常
Total Calls
843
Created
2026-05-03
Updated
2026-07-12
Response
JSON
01

Request Info

请求信息
Endpoint GET https://cyapi.top/API/qm_playlet.php
Example https://cyapi.top/API/qm_playlet.php?name=霸总
02

Parameters

3 params
Name Type Required Description
name string 剧名
id string 对应剧名的ID
page string 返回结果的页数
03

Status Codes

状态码
Code Meaning
200请求成功
403无权限或密钥无效
404接口不存在或参数错误
429请求过于频繁,已达限额
500服务器内部错误
04

Online Test

在线测试
请求参数
Response Format: JSON
响应结果
output
点击「立即测试」查看接口返回结果
05

Code Examples

调用示例
<?php
$url = 'https://cyapi.top/API/qm_playlet.php?name=' . urlencode($params['name']) . '&id=' . urlencode($params['id']) . '&page=' . urlencode($params['page'])';

$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/qm_playlet.php'
params = {
    'name': 'YOUR_VALUE',
    'id': 'YOUR_VALUE',
    'page': 'YOUR_VALUE'
}

response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://cyapi.top/API/qm_playlet.php');
const params = new URLSearchParams();
params.append('name', 'YOUR_VALUE');
params.append('id', 'YOUR_VALUE');
params.append('page', 'YOUR_VALUE');
url.search = params.toString();

fetch(url)
  .then(res => res.text())
  .then(data => console.log(data));