Links
Comment on page

Quick Start

Make your first request
To make your first request, this will get a lyrics of song.
get
https://api.emirkabal.com/v1
/lyrics
Get Lyrics
curl
Node
curl -v -L -G -d "q=uzi paparazzi" https://api.emirkabal.com/v1/lyrics
# Install node-fetch library
yarn add node-fetch@2 # or npm install node-fetch@2
// require the node-fetch and query-string library.
const fetch = require("node-fetch").default;
const query = new URLSearchParams({
q: 'uzi paparazzi'
});
(async () => {
const response = await fetch(`https://api.emirkabal.com/v1/lyrics?${query}`)
const data = await response.json();
console.log(data);
})();