๐ŸŽฒRandom

All kinds of jokes of different types

SFW Images

GET https://api.night-api.com/images/sfw

Headers

NameTypeDescription

authorization*

String

Your API key

{
    "status": 200,
    "content": {
        "id": 34,
        "type": "holo",
        "url": "https://cdn.night-api.com/api/images/sfw/holo/75f9fcb764921bfaedc9e4182db02.jpg"
    }
}

โ€‹Lists of available SFW types:

  • Coffee

  • Food

  • Holo

  • Kanna

const axios = require("axios");

axios.get('https://api.night-api.com/images/sfw', {
    headers: {
        authorization: "Your API token"
    }
})
.then(function (response) {
    console.log(response.data);
})

Or with the module

// Return: Promise

const { NightAPI } = require('night-api');
const api = new NightAPI('YOUR_API_KEY');

const image = await api.sfw.fetchImage(); // Random images

Last updated