MATCHER.TRACK.GET

Match your song against our database.

In some cases you already have some informations about the track title, artist name, album etc.
A possible strategy to get the corresponding lyrics could be:
- search our catalogue with a perfect match,
- maybe try using the fuzzy search,
- maybe try again using artist aliases, and so on.

The matcher.track.get method does all the job for you in a single call. This way you dont’t need to worry about the details, and you’ll get instant benefits for your application without changing a row in your code, while we take care of improving the implementation behind. Cool, uh?


Parameters

q_track
The song title
q_artist
The song artist
q_album
The song album

Authentication

This method requires authentication.


Examples

Match a song
Request
Try to match the track on our database for a given title/artist

matcher.track.get?q_artist=eminem&q_track=lose%20yourself%20(soundtrack)

matcher.track.get?q_track=a%20te&q_artist=Jovanotti&f_has_lyrics=1

matcher.track.get?q_track=Every%20Breath%20You%20Take&q_artist=The%20Police&f_has_subtitle=1

matcher.track.get?q_track=Love%20the%20Way%20You%20Lie%20(Eminem%20and%20Rihanna)&q_artist=Eminem

Response