Image

Get Bing Daily Wallpaper

0calls
Free

This endpoint can get the latest or specified date Bing wallpaper. By default, it returns the image directly, or you can pass format=json to get metadata, or pass format=redirect to jump directly to the final image address.

GET
uapis.cn
/api/v1/image/bing-daily
Query parameters
4
date
string

Wallpaper date, format is YYYY-MM-DD. Returns current day's wallpaper when not passed.

random
boolean

Whether to randomly return a historical wallpaper on each request. Takes effect when passing true; cannot be used with date. Keeps default current day/specified date logic when not passed or passing false.

resolution
string

Target resolution of the returned image. Can pass 4k or 1080, defaults to 4k when not passed.

format
string
Pro

Response format. Can pass image, json or redirect. Defaults to image when not passed.

Overview

  • When no parameters are passed, returns the current day's wallpaper image binary by default
  • You can pass date to query wallpaper for a specified date
  • You can pass resolution to select 4k or 1080
  • You can pass format to control return of image, JSON or 302 redirect
  • When passing format=json, returns a flat JSON object containing fields such as title, subtitle, description text, copyright information, Q&A information and image address

Parameter Description

resolution defaults to 4k. format defaults to image.

Query parameters

date
stringoptional

Wallpaper date, format is YYYY-MM-DD. Returns current day's wallpaper when not passed.

random
booleanoptional

Whether to randomly return a historical wallpaper on each request. Takes effect when passing true; cannot be used with date. Keeps default current day/specified date logic when not passed or passing false.

resolution
stringoptional

Target resolution of the returned image. Can pass 4k or 1080, defaults to 4k when not passed.

format
stringoptional

Response format. Can pass image, json or redirect. Defaults to image when not passed.

Response

200 / OK

Request successful. format=image returns image binary, format=json returns wallpaper metadata.

Format 1format=imageimage/webp
Format 2format=jsonapplication/json
JSON
{
  "date": "2026-04-07",
  "market": "zh-CN",
  "title": "Beaver, Germany",
  "subtitle": "International Beaver Day",
  "headline": "A branch, a little engineering",
  "description": "Every year on April 7th, International Beaver Day aims to pay tribute to this hard-working 'little engineer'. Beavers use branches and mud to build dams, reshaping freshwater ecological environments.",
  "copyright": "Seattle, Washington, USA (© Jim Patterson/Tandem Stills + Motion)",
  "copyright_link": "https://www.bing.com/search?q=%E8%A5%BF%E9%9B%85%E5%9B%BE&form=hpcapt&mkt=zh-cn",
  "quiz_id": "HPQuiz_20260409_SeattleSunrise",
  "trivia": {
    "question": "Which feature helps beavers easily gnaw hard wood?",
    "options": [
      {
        "bullet": "A",
        "text": "Strong molars",
        "url": "https://www.bing.com/search?q=%E6%A9%99%E8%89%B2%E9%97%A8%E9%BD%BF&FORM=HPQUIZ"
      }
    ]
  },
  "resolution": "4k",
  "image_url": "https://cn.bing.com/th?id=OHR.SeattleSunrise_ZH-CN2884575647_UHD.jpg",
  "image_url_4k": "https://cn.bing.com/th?id=OHR.SeattleSunrise_ZH-CN2884575647_UHD.jpg",
  "image_url_1080": "https://cn.bing.com/th?id=OHR.SeattleSunrise_ZH-CN2884575647_UHD.jpg&pid=hp&w=1920",
  "fetched_at": "2026-04-08T18:52:39.82+08:00",
  "updated_at": "2026-04-08T18:52:41.739+08:00"
}

302 /

When format=redirect, this endpoint will redirect to the final image address via the Location response header.

400 / Bad Request

Request parameters are incorrect.

JSON
{
  "error": "resolution can only be 4k or 1080"
}

404 / Not Found

No corresponding wallpaper found for the specified date.

JSON
{
  "error": "No Bing wallpaper found for the corresponding date"
}

500 / Internal Server Error

Server processing failed, please try again later.

JSON
{
  "error": "Failed to get Bing wallpaper"
}