yet another simple & RESTful lyrics API
guide.github
/api/:track/:artist
await fetch('https://lyricsforyou.vercel.app/api/fumes/eden').then( res => { if (res.status === 200) { console.log(res.json() } else { console.log('Not Found') } )