UNPKG

nekos-fun

Version:

Unofficial wrapper for nekos.fun API. Provides SFW and NSFW, Anime and Real Life Images and GIFs.

10 lines (9 loc) 255 B
const fetch = require('node-fetch') module.exports = { get: async function (tag) { return fetch(`http://api.nekos.fun:8080/api/${tag}`) .then(res => res.json()) .then(json => { return json.image }) } }