UNPKG

betabotz-tools

Version:

Scraper Free To Use ( Toanime,Tozombie,Remini/Upscale, Etc )

23 lines (19 loc) 439 B
/* Tools Spotify Downloader */ const axios = require('axios'); const { baseUrl } = require('../config.js') async function spotifydl(url) { try { const { data } = await axios.get(`${baseUrl}/tools/spotifydl?url=${url}`, { headers: { 'accept': 'application/json', }, }); return data; } catch (error) { console.error(error); return 'Internal Server Error!'; } } module.exports = { spotifydl }