跳至主要內容

免费随机图片api

xlc520otherother大约 6 分钟约 1854 字

免费随机图片 api 接口

api 接口整合

樱花:https://www.dmoe.cc/random.phpopen in new window

晓晴博客:https://acg.toubiec.cn/random.phpopen in new window

Unsplash Source | API Documentation:详情请看官网介绍

夏沫博客:https://cdn.seovx.com/?mom=302open in new window

https://cdn.seovx.com/d/?mom=302open in new window

https://cdn.seovx.com/ha/?mom=302open in new window

心灵毒鸡汤:https://cdn.seovx.com/api/su/open in new window

二次元随机图:https://api.blogbig.cn/random/api.phpopen in new window

搏天 api:https://api.btstu.cn/sjbz/api.phpopen in new window

姬长信 API For Docker:

----每日 bing:https://api.isoyu.com/bing_images.phpopen in new window

----美女图片壁纸:https://api.isoyu.com/mm_images.phpopen in new window

----网红专栏壁纸:https://api.isoyu.com/beibei_images.phpopen in new window

----动态 IP 签名图片:https://api.isoyu.com/ip_images.php?signature=早安open in new window

----ARU(阿鲁)表情包:https://api.isoyu.com/ARU_GIF_S.phpopen in new window

樱道:https://api.r10086.com/动漫综合open in new window 1.php (网站中有更多 api 接口)

小歪 API:https://api.ixiaowai.cn/api/api.php(二次元动漫)open in new window

https://api.ixiaowai.cn/mcapi/mcapi.php(mcopen in new window 酱动漫)

https://api.ixiaowai.cn/gqapi/gqapi.php(高清壁纸)open in new window

保罗|API:https://api.paugram.com/wallpaper/open in new window

墨天逸:https://api.mtyqx.cn/tapi/random.phpopen in new window

EEE.DOG:https://api.yimian.xyz/imgopen in new window

动漫星空:https://api.dongmanxingkong.com/suijitupian/acg/1080p/index.phpopen in new window

岁月小筑:#https 调用https://img.xjh.me/random_img.phpopen in new window

http 调用http://img.xjh.me/random_img.phpopen in new window

东方 Project:https://img.paulzzh.tech/touhou/randomopen in new window

主题作者 Tagaki 的 API(有时候会挂)

暗鸦 API

Unsplash API

电脑动漫图片:http://api.btstu.cn/sjbz/?lx=dongmanopen in new window

电脑美女图片:http://api.btstu.cn/sjbz/?lx=meiziopen in new window

电脑随机动漫妹子:http://api.btstu.cn/sjbz/?lx=suijiopen in new window

手机动漫图片:http://api.btstu.cn/sjbz/?lx=m_dongmanopen in new window

手机美女图片:http://api.btstu.cn/sjbz/?lx=m_meiziopen in new window

手机随机动漫妹子:http://api.btstu.cn/sjbz/?m_lx=suijiopen in new window


body { background-image: url(http://api.btstu.cn/sjbz/?lx=dongman);
background-position: left top;  background-attachment:fixed; background-repeat:no-repeat;opacity:.9;}
@media (max-width: 640px){
body {
   background-image: url(http://api.btstu.cn/sjbz/?lx=m_dongman);
}
}
@media (max-width: 720px){
 body {
 background-image: url(http://api.btstu.cn/sjbz/?m_lx=suiji);
 }
}

api 网站整合

随机图库 Lorem Picsum

获取指定大小的随机图片

https://picsum.photos/200/300

img 这样你就能得到一张宽度为 200,高度为 300 的随机图片

如果你想要获得正方形图片,只需要如下代码

https://picsum.photos/200
//等同于 https://picsum.photos/200/200
img
img

这样你就能得到一张宽度为 200,高度为 200 的随机正方形图片

获取指定 id 的图片


https://picsum.photos/id/237/200/300
img
img

所有图片列表open in new window

静态随机图片


每次根据种子获得相同的随机图像,方法是在 URL 开头添加/seed/ {seed}

https://picsum.photos/seed/picsum/200
img
img

灰度图片


只需要在链接末尾添加?grayscale即可

https://picsum.photos/200/300?grayscale
img
img

模糊图片


通过附加?blur到 url 的末尾获得模糊图像。

https://picsum.photos/200/200/?blur
img
img

可以通过提供介于 1 和 10 之间的数字来调整模糊量。

https://picsum.photos/200?blur=2
img
img

高级用法


您可以结合使用以上任何选项。

例如,要获得灰度和模糊的特定图像。

https://picsum.photos/id/870/200?grayscale&blur=2
img
img

要在浏览器中请求多张相同大小的图像,请添加random查询参数以防止图像被缓存:

<img src="https://picsum.photos/200/300?random=1">
<img src="https://picsum.photos/200/300?random=2">

如果您需要文件结尾,则可以添加.jpg到 url 的结尾。

https://picsum.photos/200/300.jpg

要获取 WebP 格式的图像,可以将其添加.webp到 URL 的末尾。

https://picsum.photos/200/300.webp

列出图片


使用/v2/list端点获取图像列表。

https://picsum.photos/v2/list
[
    {
        "id": "0",
        "author": "Alejandro Escamilla",
        "width": 5616,
        "height": 3744,
        "url": "https://unsplash.com/...",
        "download_url": "https://picsum.photos/..."
    }
]

默认情况下,该 API 每页将返回 30 个项目。

要请求另一个页面,请使用?page参数。

要更改每页的项目数量,请使用?limit参数。

https://picsum.photos/v2/list?page=2&limit=100

Link头包括关于下一首/上页分页信息

图像细节


使用/id/{id}/info端点获取有关特定图像的信息。

https://picsum.photos/id/0/info

您可以通过查看Picsum-ID标题或User CommentEXIF 元数据中的字段来查找图像的 ID 。

{
        "id": "0",
        "author": "Alejandro Escamilla",
        "width": 5616,
        "height": 3744,
        "url": "https://unsplash.com/...",
        "download_url": "https://picsum.photos/..."
}

樱花

网址:https://www.dmoe.cc/open in new window

  • 随机二次元图片 API

API 基本调用格式:

https://www.dmoe.cc/random.php

参数:

type=json

JSON 调用格式

https://www.dmoe.cc/random.php?return=json

JSON 数据

{
 "code":"200" #图片状态码
 "acgurl":"https:\/\/ws1.sinaimg.cn\/large\/0072Vf1pgy1foxkfy08umj31kw0w0nng.jpg" #图片地址
 "width":"2048" #图片宽
 "height":"1152" #图片高
}

晓晴博客

网址:https://www.toubiec.cn/318.htmlopen in new window

  • 随机二次元图片接口

源码项目地址:https://www.toubiec.cn/99.htmlopen in new window

Unsplash Source | API Documentation

网址:https://source.unsplash.com/open in new window

  • 简单的嵌入 Unsplash 图片,可以登录 Unsplash 账号设置,也可以自定义筛选接口的图片类型

随机搜索术语 使用上述任何格式,您可以通过在 URL 末尾提供逗号分离的搜索词列表来进一步缩小随机照片的选择范围。

如果您想将结果限制在我们精心策划的收藏中,只需在 URL 末尾添加即可。featured

参数

https://source.unsplash.com/featured/?{KEYWORD},{KEYWORD}open in new window 1 *可选地指定大小,将其放置在基座 URL 之后。

https://source.unsplash.com/1600x900/?nature,wateropen in new window

夏沫博客

网址:https://cdn.seovx.com/open in new window

  • 在线古风美图二次元 API 接口

美图接口代码示例:

<img src="https://cdn.seovx.com/?mom=302" style="max-width: 100%; max-height: 100%;">

二次元接口代码示例:

<img src="https://cdn.seovx.com/d/?mom=302" style="max-width: 100%; max-height: 100%;">
1

古风接口代码示例:

<img src="https://cdn.seovx.com/ha/?mom=302" style="max-width: 100%; max-height: 100%;">
1

二次元随机图

网址:https://api.blogbig.cn/randomopen in new window

  • 该 api 已停运,原接口保持但不维护

二次元随机图 API 请求方式

Method: GET
  • 请求地址

    ./dmapi/api.php二次元
    ./bsapi/api.php风景
    12
    
  • 参数

    return // return=json返回json
    return // return=img直接输出图片
    12
    

返回数据

{
    "code":"200" #图片状态码
    "acgurl":"图片地址" #图片地址
    "width":"2048" #图片宽
    "height":"1152" #图片高
}

搏天 api

网址:https://api.btstu.cn/doc/sjbz.phpopen in new window

请求参数:

名称必填类型说明
methodstring输出壁纸端[mobile/pc/zsy]默认为 pc
lxstring选择输出分类[meizi/dongman/fengjing/suiji],为空随机输出
formatstring输出壁纸格式[json/images]默认为 images

返回参数:

名称类型说明
codestring返回的状态码
imgurlstring返回图片地址
widthstring返回图片宽度
heightstring返回图片高度

姬长信 API For Docker

网址:https://api.isoyu.com/open in new window

  • 姬长信 API For Docker 一个基于多种编程语言开源免费不限制提供生活常用,出行服务,开发工具,金融服务,通讯服务和公益大数据的平台.

樱道

网址:https://img.r10086.com/open in new window

小歪 API

网址:https://api.ixiaowai.cn/open in new window

  • 图片 API,文字 API,二维码 API,随心所动不再单调

图片 API 基本调用格式: https://api.ixiaowai.cn/api/api.php(二次元动漫)open in new windowhttps://api.ixiaowai.cn/mcapi/mcapi.php(mcopen in new window 酱动漫) https://api.ixiaowai.cn/gqapi/gqapi.php(高清壁纸)open in new window

  • JSON 调用格式

    图片列:https://api.ixiaowai.cn/api/api.php?return=json
    文字列:https://api.ixiaowai.cn/ylapi/index.php/?code=js
    12
    

保罗|API

网址:https://api.paugram.com/help/wallpaperopen in new window

  • 生成适合 Single 主题的白底动漫壁纸

墨天逸

网址:https://api.mtyqx.cn/open in new window

  • 随机图片 API

  • API 基本调用格式:

    https://api.mtyqx.cn/api/random.php(二次元动漫)丨https://api.mtyqx.cn/tapi/random.php(二次元动漫)
    1
    

EEE.DOG 网址:https://www.eee.dog/tech/rand-pic-api.htmlopen in new window

本 API 基于华为云对象存储,使用华为 CDN 云加速,全球平均下载速度达 10MB/s。API 中已收录 1100+张二次元图片,20+张 Bing 壁纸( 每日自动抓取),150+张二次元头像,10+张图床上传图片。

动漫星空

网址:https://api.dongmanxingkong.com/open in new window

岁月小筑

网址:https://img.xjh.me/open in new window

  • 随机图片 API

东方 Project

网址:https://img.paulzzh.tech/open in new window

  • 随机图片 API