This module will help you to get API response from website https://www.musixmatch.com/
examples
const mx = require('musixmatchlyrics')
mx.tracks('adele', songs => {
console.log(songs)
})
const mx = require('musixmatchlyrics')
mx.autocomplete('Rolling in the Deep', songs => {
console.log(songs)
})
const mx = require('musixmatchlyrics')
mx.search('Rolling in the Deep', songs => {
console.log(songs)
})
mx.search('Rolling in the Deep', songs => {
mx.get(songs[0].url, lyric => {
console.log(lyric)
})
})