luxurydev.api
v1.0.1
Published
JS Wrapper for the luxurydev api
Downloads
13
Maintainers
Readme
luxurydev.api
Installation
npm i luxurydev.apiOfficial wrapper for the luxurydev api.
Version 1.0.1
New NSFW Methods New VERSATILE Methods
Endpoints
| Methods | Json/Promise-Buffer |
| -------- | ----------- |
| .memes() | .title / .url / .image / .upvotes / .comments |
| .chatbot(text) | .result.response |
| .blowjob() | .url (NSFW) |
| .dadjokes() | .message |
| .ass() | .url (NSFW) |
| .hentai() | .url (NSFW) |
| .oral() | .url (NSFW) |
| .paizuri() | .url (NSFW) |
| .ecchi() | .url (NSFW) |
| .ero() | .url (NSFW) |
| .randomnsfw() | .url (NSFW) |
| .maid() | .url (VERSATILE) |
| .waifu() | .url (VERSATILE) |
| .marinkitagawa() | .url (VERSATILE) |
| .moricalliope() | .url (VERSATILE) |
| .raidenshogun() | .url (VERSATILE) |
| .oppai() | .url (VERSATILE) |
| .selfies() | .url (VERSATILE) |
| .uniform() | .url (VERSATILE) |
| .drake(text) | .image |
| .ohno(text) | .image |
| .tornado(text, text2) | .image |
| .piccolo(text) | .image |
| .notstonks(text) | .image |
| .abandon(text) | .image |
| .stonks(text) | .image |
| .cheating(text) | .image |
NOTE
Some VERSATILE and NSFW methods are new so the don't have as much content.
Example
const LuxuryApi = require('luxurydev.api');
const luxury = new LuxuryApi("Your epic Api Key");
async function test() {
const lol = await luxury.memes();
console.log(lol.title);
console.log(lol.url)
console.log(lol.image);
}
test();
