maelyn-api
v1.1.0
Published
Simple Usage Rest API Maelyn
Downloads
10
Maintainers
Readme
Maelyn API
Simple Usage Rest API Maelyn
Documentation
Installation
npm install maelyn-api
Usage/Examples
const MaelynAPI = require('maelyn-api');
const api = new MaelynAPI('YOUR-APIKEY');
api.get('geminichat', { q: 'Questions' })
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});
const MaelynAPI = require('maelyn-api');
const api = new MaelynAPI('YOUR-APIKEY');
api.get('geminichat', { q: 'Questions', url: 'URL-Image'})
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});
const MaelynAPI = require('maelyn-api');
const api = new MaelynAPI('YOUR-APIKEY');
api.get('komikulastupdate')
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});