Triggered endpoint
- Method: GET
- URL:
https://some-random-api.ml/canvas/triggered
- Required parameters:
- Required queries:
- avatar - Direct link to the image you want
- Example output:

Code examples
const { MessageEmbed, MessageAttachment } = require('discord.js')
let link = `https://some-random-api.ml/canvas/wasted/?avatar=${message.author.avatarURL({ format: 'png'})}`
// -------- Sending the image as an image attachment --------
//create a message attachment with the name of the file with discord.js built in attachment class.
let attachment = new MessageAttachment(link, 'triggered.gif');
message.channel.send(attachment); //send the attachment
// -------- Sending the image inside an embed --------
const attachment = new MessageAttachment(link, 'triggered.gif');
const embed = new MessageEmbed()
.setTitle(`Image Generated?`)
.attachFiles(attachment)
.setImage('attachment://triggered.gif')
message.channel.send(embed);
Petpet endpoint
- Method: GET
- URL:
https://some-random-api.ml/canvas/petpet
- Required parameters:
- Required queries:
- avatar - Direct link to the image you want
- Example output:
