๐Ÿ†”ID

Choose a specific joke by its ID

SFW Images

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

Path Parameters

NameTypeDescription

Number

The image ID

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"
    }
}

const axios = require("axios");

axios.get('https://api.night-api.com/images/sfw/5', {
    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(5); // Image with ID 5

Last updated