notmebotz-tools
Version:
Sebuah Tools yang berfungsi untuk mendownload Video atau Foto dari media sosial, serta sebagai tools yang berguna untuk aplikasi kamu seperti untuk BOT
28 lines (23 loc) • 568 B
JavaScript
/*
@ author: Herza
@ scraper : Terabox Downloader
@ type : CommonJS
@ ========> Info <=========
@ github: https://github.com/herzonly
@ wa_channel: https://whatsapp.com/channel/0029VaGVOvq1iUxY6WgHLv2R
# BASE URL: https://teraboxdownloader.online/
*/
const axios = require('axios')
async function terabox(url) {
const { data } = await axios.post('https://teraboxdownloader.online/api.php', { url }, {
headers: {
'Content-Type': 'application/json'
}
})
return {
author: "Herza",
status: 200,
data
}
}
module.exports = { terabox };