接口信息
总调用次数: 4
所属分类: 图片
请求方式: GET
响应格式: JSON
添加时间: 2026-05-23
更新时间: 2026-06-05
接口描述: 获取必应每日壁纸
请求信息
请求地址
https://api.key5.site/API/bing/index.php
请求参数
参数名 类型 必填 说明
type string JSON输出:json -示例:?type=json
rand string 随机输出:sj【英文】-示例:?rand=sj
rand string 随机输出:sj-zh【中文】-示例:?rand=sj-zh
type string 获取Bing近7天的图片 -示例:?type=week
返回示例
{
    "code": 200,
    "msg": "成功获取每日bing图片",
    "time_id": "20240828",
    "search": "https://www.bing.com/search?q=2024%E5%B9%B4%E5%A4%8F%E5%AD%A3%E6%AE%8B%E5%A5%A5%E4%BC%9A&form=hpcapt&mkt=zh-cn",
    "title": "蒙马特和圣心大教堂,巴黎,法国 (© Tuul & Bruno Morandi/Getty Images)",
    "imageurl": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_UHD.jpg&w=4096",
    "image_size": {
        "UHD": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_UHD.jpg",
        "1920x1080": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_1920x1080.jpg",
        "1366x768": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_1366x768.jpg",
        "1280x768": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_1024x768.jpg",
        "800x600": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_800x600.jpg",
        "800x480": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_800x480.jpg",
        "768x1280": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_768x1280.jpg",
        "720x1280": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_720x1280.jpg",
        "480x800": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_640x480.jpg",
        "640x480": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_480x800.jpg",
        "400x240": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_400x240.jpg",
        "320x240": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_320x240.jpg",
        "240x320": "https://cn.bing.com/th?id=OHR.ParalympicsParis_ZH-CN9773135851_240x320.jpg"
    }
}
状态码说明
状态码 说明
200请求成功,服务器已成功处理了请求。
403服务器拒绝请求。这可能是由于缺少必要的认证凭据(如API密钥)或权限不足。
404请求的资源未找到。请检查您的请求地址是否正确。
429请求过于频繁。您已超出速率限制,请稍后再试。
500服务器内部错误。服务器在执行请求时遇到了问题。
调用示例
<?php
$url = 'https://api.key5.site/API/bing/index.php';
$params = [
    'type' => 'YOUR_VALUE',
    'rand' => 'YOUR_VALUE',
    'rand' => 'YOUR_VALUE',
    'type' => '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.key5.site/API/bing/index.php"
params = {
    "type": "YOUR_VALUE",
    "rand": "YOUR_VALUE",
    "rand": "YOUR_VALUE",
    "type": "YOUR_VALUE",
}

response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://api.key5.site/API/bing/index.php');
const params = {
    'type': 'YOUR_VALUE',
    'rand': 'YOUR_VALUE',
    'rand': 'YOUR_VALUE',
    'type': '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));
curl "https://api.key5.site/API/bing/index.php?type=YOUR_VALUE&rand=YOUR_VALUE&rand=YOUR_VALUE&type=YOUR_VALUE"
联系站长