Skip to content

Instantly share code, notes, and snippets.

@ayashiiiyo
Created May 16, 2026 11:26
Show Gist options
  • Select an option

  • Save ayashiiiyo/5a8cdbfd7bab4945a08398f072f56be5 to your computer and use it in GitHub Desktop.

Select an option

Save ayashiiiyo/5a8cdbfd7bab4945a08398f072f56be5 to your computer and use it in GitHub Desktop.
let handler = async (m, { args, command }) => {
try {
if (!args[0]) return m.reply(`*Example :* .${command} https://sfl.gl/xxxxx`)
m.reply(global.wait)
m.reply(
(
await (
await fetch(`https://anabot.my.id/api/tools/izenLOL?url=${encodeURIComponent(args[0])}&apikey=freeApikey`)
).json()
).data.result.result
)
} catch (e) {
m.reply(e.message)
}
}
handler.help = ['izen']
handler.command = ['izen']
handler.tags = ['skiplink']
export default handler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment