hmtai
v3.2.3
Published
Large Anime/Hentai Image API for random images, fast and reliable!
Downloads
1,865
Maintainers
Readme
Will be i updating this API? Of course nyse, dude, but this API has a 18.100 NSFW picture, and 1000+ SFW media. 19 200 total. All picture we added manually.
My goal is to create the most depraved library ever and I think I got it
Discord Server | REST API | HMfull | Support Project - Read Please!
Installation
npm install hmtai
Changelogs
v3.2.0
- Many SFW endpoints
- Hug SFW content update
Example(s)
NodeJS:
// hmtai //
const HMtai = require("hmtai");
const hmtai = new HMtai();
// Get SFW Neko Images, uwu //
console.log("SFW Neko: " + await hmtai.neko());
// Get other NSFW Images //
console.log("Hentai: " + await hmtai.nsfw.hentai());
console.log("BDSM: " + await hmtai.nsfw.bdsm());
console.log("Ero: " + await hmtai.nsfw.ero());
Legacy Function(s)
Example:
hmtai.sfw.function(); // Format
hmtai.sfw.neko(); // Example
hmtai.sfw.wallpaper(); // Example 2
| Function | Description | | --------------- | ---------------------------------- | | wave | Greeting! Wave gifs! (●'◡'●) | | wink | Wink! 😉 | | tea | I want some tea! ☕ | | bonk | Baaakaa | | punch | ONE PUUUUUUUUUUUNCH | | poke | Poke-poke :P | | bully | Cyberbullyig >:3 | | pat | Let's pat some good guys (/ω\) | | kiss | Kissu! :3 | | kick | Turn back! | | blush | E-to... //// | | feed | Who want eat? :P | | smug | Smug :P | | hug | I like hugs, do you? | | cuddle | Cuddle cuddle cuddle xD | | cry | Bite bite biting :3 | | slap | BAKA!! | | five | Give me five, bro! 👋 | | glomp | My dear!!! | | happy | Because i'm happy... | | hold | That's...embrassing.. | | nom | nom 0-0 | | smile | :)))) | | throw | Go out here, man! | | lick | Mmm hum hum, so tasty~ | | bite | Nyaaaaaa!! | | dance | Move like lady jagger ヾ(≧▽≦*)o | | boop | Boopyy | | sleep | Zzz 💤 | | like | I like it, nice 👍 | | kill | Kill everyone, everybody! | | nosebleed | That's...impressive | | threaten | Rrrr | | tickle | Tiiickle tickle tickle :3 | | depression | SFW depression Gifs :c | | wolf_arts | Awoooooo girls :3 | | jahy_arts | So hot Jahy :3 | | neko_arts | SFW Neko Girls (Cat Girls) | | coffee_arts | Do you want some coffee? And girls :3| | wallpaper | SFW Wallpaper with Anime | | mobileWallpaper | SFW Wallpaper with Anime on Mobile |
NSFW Function(s)
Example:
hmtai.nsfw.function(); // Format
hmtai.nsfw.hentai(); // Example
| Function | Description | | ------------------- | ------------------------------------------------------------------ | | anal | Does somebody like being in all holes?~ | | ass | I know you like anime ass~ uwu | | bdsm | If you don't know what it is, search it up | | cum | Basically sticky white stuff that is usually milked from sharpies. | | classic | Relaxing classic kekus uwu | | creampie | So hot, sticky, and inside uwu | | manga | Sends a random doujin page imageURL! | | femdom | Female Domination? | | hentai | Sends a random vanilla hentai imageURL~ | | incest | I know, you like it. Brothet and sister <3 And..mo...omg | | masturbation | You like lewd solo?~ | | public | Some people like do it on a public..uh~ | | ero | eros, ero Uniforms, etc, you know what eros are :3 | | orgy | Group Lewd Acts | | elves | So, it's not Elvis Presley, but i know, you like it :) | | yuri | What about cute Les?~ | | pantsu | I mean... just why? You like underwear? | | glasses | Girls that wear glasses, uwu~ | | cuckold | Wow, I won't even question your fetishes. | | blowjob | Basically an image of a girl sucking on a sharp blade! | | boobjob | So soft, round ... gentle ... damn we love it | | footjob | So you like smelly feet huh? | | handjob | So you like how's it feeling in hand, huh? | | boobs | A-am..that's normal size! | | thighs | Oh, i so like it, it's best of the best, like a religion <3 | | pussy | The genitals of a female, or a cat, you give the meaning. | | ahegao | So happy woman faces :)) | | uniform | School and many other Uniforms~ | | gangbang | 5 on 1? Uh.. | | tentacles | I'm sorry but, why do you like it? Uh.. | | gif | Basically an animated image, so yes :3 | | nsfwNeko | NSFW Neko Girls (Cat Girls) | | nsfwMobileWallpaper | NSFW Anime Mobile Wallpaper | | zettaiRyouiki | That one part of the flesh being squeeze in thigh-highs~<3 |
Wallpaper Function(s)
Example:
hmtai.nsfw.function(); // NSFW Format
hmtai.nsfw.mobileWallpaper(); // NSFW Example
| Function | Description | | -------------------------------- | --------------------------------------- | | hmtai.mobileWallpaper() | Fetch a random SFW Wallpaper! (Mobile) | | hmtai.wallpaper() | Fetch a random SFW Wallpaper! (Desktop) | | hmtai.nsfw.nsfwMobileWallpaper() | Fetch a random NSFW Wallpaper! (Mobile) |
Discord Bot Example
// Imports Discord.JS and HMtai //
const Discord = require("discord.js"); // v12
const HMtai = require("hmtai");
const hmtai = new HMtai()
// Create New Client //
const client = new Discord.Client();
// Bot Settings //
const settings = {
prefix: "YOUR_BOT_PREFIX",
token: "YOUR_BOT_TOKEN",
};
client.on("message", async (message) => {
// Create New Embed //
const embed = new Discord.MessageEmbed();
// Defines Command //
var command = message.content.toLowerCase().slice(settings.prefix.length).split(" ")[0];
// Onii-chan, don't reply! //
if (!message.content.startsWith(settings.prefix) || message.author.bot) return;
if (command == "nsfwNeko") {
// For Embed //
embed.setImage(await hmtai.nsfw.nsfwNeko());
return message.channel.send(embed);
// For Plain Text //
return message.channel.send(hmtai.nsfw.nsfwNeko());
// For Attachment //
let img = await hmtai.nsfw.nsfwNeko();
return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
} else if (command == "ero") {
// For Embed //
embed.setImage(await hmtai.nsfw.ero());
return message.channel.send(embed);
// For Plain Text //
return message.channel.send(await hmtai.nsfw.ero());
// For Attachment //
let img = await hmtai.nsfw.nsfwNeko();
return message.channel.send({file: [{ attachment: img, name: `NSFW${img.slice(-5)}` }]});
}
});
Thank Yous
- 💗Halami💗#1469 (What she shared with me her NSFW library!)
Sources
I hand picked most of the images from the following: Discord Servers, Konachan, Patreon, Friends sending to me, nHentai, gelbooru, etc.