Skip to content

Latest commit

 

History

History
79 lines (59 loc) · 1.67 KB

README.md

File metadata and controls

79 lines (59 loc) · 1.67 KB

No-Api-Key Wrapper

https://no-api-key.com

USAGE

const { Api } = require("no-api-key");

const api = new Api('https://cdn.discordapp.com/avatars/185957154606284800/a_e0d990a735879011ec376382296b0ec6.png')

;(async () => {
    const dog = await api.animals('dog');
    console.log(dog);

    const other = await api.other('coin-flip')
    console.log(other);

    const binaryText = await api.textBinary(['no', 'api', 'key']);
    console.log(binaryText);

    const password = await api.password();
    console.log(password);

    const blueify = await api.blueify();
    console.log(blueify)

    const timeout = await api.timeout();
    console.log(timeout)

})();

Examples

var.animals() options

  • var.animals('dog')
  • var.animals('cat')
  • var.animals('bear')
  • var.animals('panda')

image options

  • var.timeout()
  • var.blueify()
  • var.invert()
  • var.darken()
  • var.purplify()
  • var.shoot()
  • var.smrt()
  • var.trash()

var.other() options

  • var.other('memes')
  • var.other('magic8ball')
  • var.other('hug')
  • var.other('kiss')
  • var.other('quotes')
  • var.other('riddle')
  • var.other('facts')
  • var.other('car')
  • var.other('coin-flip')

More Routes

  • var.password()
  • var.textBinary(['no', 'api', 'key']);
  • var.flipText(['no', 'api', 'key']);
  • var.binaryText(['01101010', '01101111', '01100101', '00100000', '01100010', '01101001', '01100100', '01100101', '01101110']);