📋
Category
Choose which Category of joke you would like to have
get
https://api.night-api.com/
images/nsfw/:type
NSFW Images
Lists of available NSFW categories:
- Anal
- Ass
- Boobs
- Gonewild
- Hanal
- Hass
- Hboobs
- Hentai
- Hkitsune
- Hmidriff
- Hneko
- Hthigh
- Neko
- Paizuri
- Pgif
- Pussy
- Tentacle
- Thigh
- Yaoi
const axios = require("axios");
axios.get('https://api.night-api.com/images/nsfw/ass', {
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.nsfw.fetchImage("anal"); // Random images of category "anal"
Last modified 7mo ago