星眠推荐动漫
星眠推荐动漫
随机一个超燃动漫视频 一共有1000视频
正常
请求信息
https://xingmian.n10.top/API/animation.php
总调用次数
24 次
添加时间
2026-05-02
请求参数
✨ 此接口无需请求参数
返回示例
JSON
76
调用示例
PHP
<?php
$url = 'https://xingmian.n10.top/API/animation.php';
$params = [];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests

url = "https://xingmian.n10.top/API/animation.php"
params = {}
response = requests.get(url, params=params)
print(response.text)
JavaScript
const url = new URL('https://xingmian.n10.top/API/animation.php');
const params = {};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));

fetch(url)
    .then(response => response.text())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));