壁纸搜索

小鸟壁纸

接口状态:正常
总调用:23
添加时间:2026-04-19
更新时间:2026-04-19

请求信息

请求参数

参数名类型必填说明
关键词string?content=汽车
页数string&pageno=1 2 3...
图片数量string&count=1 2 3...

状态码说明

状态码说明
200请求成功,服务器已成功处理了请求。
403服务器拒绝请求。这可能是由于缺少必要的认证凭据(如API密钥)或权限不足。
404请求的资源未找到。请检查您的请求地址是否正确。
429请求过于频繁。您已超出速率限制,请稍后再试。
500服务器内部错误。服务器在执行请求时遇到了问题。

返回示例

{"errno":0,"msg":"","data":{"total_count":1696,"total_page":189,"pageno":1,"count":9,"list":[{"id":"2064170","tag":"报纸墙,,女孩,长发,,耳环","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202502\/cf22d49cef33b4a4a67f5a5d8ebfea9b--1243726624.jpg","class_id":"26"},{"id":"2062179","tag":"报纸墙,马尾女孩,可爱","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202403\/619562afacb0ac0e049b5a21a1e0b145--1337374774.jpg","class_id":"26"},{"id":"2062435","tag":"粉色大波浪女孩,报纸墙","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202405\/c6bbe5f0113c0a45b20cf490b90f276f--3890793636.jpg","class_id":"26"},{"id":"2062433","tag":"报纸墙,粉红女孩,爱心耳环,条码","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202405\/d5f764d515061df4e8544364082066af--1206319676.jpg","class_id":"26"},{"id":"2064528","tag":"报纸墙,原神,甘雨","category":"游戏壁纸","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202504\/b41b7847a13dbd33fbe6c534c7dba46e--1646455320.jpg","class_id":"5"},{"id":"2061090","tag":"报纸,粉红头发,长发","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202401\/486177467ce49279e2c8138315573311--1128006898.jpg","class_id":"26"},{"id":"2063679","tag":"山田凉,波奇酱,报纸墙","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202410\/8e8ff7503513ca1fdbda694f040aec7a--4263466804.jpg","class_id":"26"},{"id":"2062901","tag":"亚丝娜,报纸墙,可爱少女","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202407\/0a5b1f18e700f41415603e0e3f3487f1--1087448245.jpg","class_id":"26"},{"id":"2062186","tag":"报纸墙,少女,耳环,猫咪","category":"动漫卡通","live_open":false,"url":"http:\/\/cdn-hsyq-static.shanhutech.cn\/bizhi\/staticwp\/202403\/d74e3b0466b6ed7316d8bdd69b813f75--4196040656.jpg","class_id":"26"}]},"processTime":0.0034}

调用示例

<?php
$url = 'https://api-fast.521567.xyz/api/bz/index2.php';
$params = ['关键词' => 'YOUR_VALUE', '页数' => 'YOUR_VALUE', '图片数量' => 'YOUR_VALUE', ];
$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;
?>
import requests

url = "https://api-fast.521567.xyz/api/bz/index2.php"
params = {
    '关键词': 'YOUR_VALUE',
    '页数': 'YOUR_VALUE',
    '图片数量': 'YOUR_VALUE',
}
response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://api-fast.521567.xyz/api/bz/index2.php');
const params = {
    '关键词': 'YOUR_VALUE',
    '页数': 'YOUR_VALUE',
    '图片数量': 'YOUR_VALUE',
};
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));