TRACKING.URL.GET

Get the base url for the tracking script

With this api you’ll be able to get the base url for the tracking script you need to insert in your page to legalize your existent lyrics library.
Read more here: rights-clearance-on-your-existing-catalog

In case you’re fetching the lyrics by the musiXmatch api called track.lyrics.get you don’t need to implement this API call.

Parameters

domain
Your domain name
format
Decide the output type (json or xml)

Authentication

This method requires authentication.


Examples

Get the tracking base url.
Request
I want the base url for the domain www.mylyricswebsite.com
tracking.url.get?domain=www.mylyricswebsite.com
Json Response
{
  "message": {
    "header": {
      "status_code": 200,
      "execute_time": 0.030435085296631
    },
    "body": {
      "url": "http:\/\/tracking.musixmatch.com\/t1.0\/0Zpu4T+OtRXG9f"
    }
  }
}
XML Response
<?xml version="1.0" encoding="utf-8"?>
<message>
  <header>
    <status_code>200</status_code>
    <execute_time>0.026978969573975</execute_time>
  </header>
  <body>
    <url>http://tracking.musixmatch.com/t1.0/0Zpu4T+OtRXG9f</url>
  </body>
</message>