The fastest, most powerful and legal way to display lyrics on your website or in your application. Today.
A complete music catalogue featuring 640k artists and 13M of tracks organized by albums.
A powerful search engine including all our library is available through our api. Every artist/track/album has a score (1-100) based on our api requests, this is our rating. You can sort the artist/track/albums search results by this rating providing the most relevant content for your users.
musiXmatch lyrics API is a robust service that permits you to search a complete music catalogue and retrieve lyrics in the simplest possible way. It just works.
To utilize unirest for node.js install the the npm module:
$ npm install unirest
After installing the npm package you can now start simplifying requests like so:
var unirest = require('unirest');
unirest.("https://musixmatchcom-musixmatch.p.rapidapi.com") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });