Skip to content

keksiqc/kawaiiapi-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

The kawaii api from Error44 as npm package

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published