Node Wrapper for the Alchemy Cheeze Wizards API: https://docs.alchemyapi.io/docs/cheeze-wizards-api
You'll need a valid API key and a verified email address. To get your key, just sign up on the Cheeze Wizards developer page: https://www.cheezewizards.com/cheezyverse
npm install --save node-cheeze-wizards-api
// Import the desired module
const { CheezeWizardsAPI } = require('node-cheeze-wizards-api');
// Create an instance
const cheezeWizardsAPI = new CheezeWizardsAPI('your@email.com', 'your-api-token');
// Get stuff done
cheezeWizardsAPI
.wizard(1)
.then(response => {
console.log(response.data);
console.log(response.status);
})
.catch(error => {
console.log(error);
});
duel();
duel(duelId);
duels();
duels(params);
wizard();
wizard(wizardId);
wizards();
wizards(params);