接口大厅/无敌写真
返回接口大厅
49 API Endpoint GET

无敌写真

异常

如题,图片尺度有些大

Status
异常
Total Calls
3,067
Created
2025-09-20
Updated
2025-11-09
Response
IMAGE
01

Request Info

请求信息
Endpoint GET http://cyapi.top/API/wdxz.php
Example http://cyapi.top/API/wdxz.php
02

Parameters

0 params
Name Type Required Description
apikey string 填入你的 API Key
03

Status Codes

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

Online Test

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

Code Examples

调用示例
<?php
$url = 'http://cyapi.top/API/wdxz.php?apikey=' . urlencode($params['apikey'])';

$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 = 'http://cyapi.top/API/wdxz.php'
params = {
    'apikey': 'YOUR_API_KEY'
}

response = requests.get(url, params=params)
print(response.text)
const url = new URL('http://cyapi.top/API/wdxz.php');
const params = new URLSearchParams();
params.append('apikey', 'YOUR_API_KEY');
url.search = params.toString();

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