kawaii-api
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

kawaii api

The kawaii api from Error44 as npm package

Download

# npm
npm i kawaii-api

# yarn
yarn add kawaii-api

Examples

const { Kawaii } = require("kawaii-api"); // or import { Kawaii } from 'kawaii-api';

const api = new Kawaii("anonymous"); // you can't use stats with this token

api.endpoints("gif").then(res => {
    console.log(res);
});

api.get("gif", "kiss").then(res => {
    console.log(res)
})

api.random("gif").then(res => {
    console.log(res)
})

api.gif("kiss").then(res => {
    console.log(res)
})

api.stats().then(res => {
    const stats = res
})

// or async/await

const example = async() => {

    await api.endpoints("gif")

    await api.get("gif", "kiss")

    await api.random("gif")

    await api.gif("kiss")

    const stats = await api.stats()
}

All Stats

stats.endpoints
stats.all
stats.failed
stats.history
stats.most_endpoint
stats.most_endpoints
stats.most_type
stats.most_types

Package Sidebar

Install

npm i kawaii-api

Weekly Downloads

2

Version

1.1.1

License

MIT

Unpacked Size

6 kB

Total Files

7

Last publish

Collaborators

  • keksiqc