matcher.subtitle.get
curl --request GET \
--url 'https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey='import requests
url = "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"message": {
"body": {
"subtitle": {
"lyrics_copyright": "Writer(s): George Matthew Robertson, Stefan Kendal Gordy, Erin Beck, David Jamahl Listenbee, Kenny Oliver, Skyler Husten Gordy\nCopyright: Universal Music Corp., Chebra Music, Universal Tunes, The Vegan Ranch, Eskaywhy Publishing, Hi Mom I Did It\nLyrics powered by www.musixmatch.com",
"pixel_tracking_url": "https://tracking.musixmatch.com/t1.0/m_img/e_0/sn_0/l_0/su_41629674/rs_0/...BBM00_i5JEjI4qO7ZF6qPlettxThcR9F0UVssyptUfdbEFyZWeLzTTuPmqRqPqvoM1OLeULbPE_pyohfNs/",
"region_restriction": {
"allowed": [
"XW"
],
"blocked": []
},
"script_tracking_url": "https://tracking.musixmatch.com/t1.0/m_js/e_0/sn_0/l_0/su_41629674/rs_0/...RKWSnHN8tvXOcbxTbK0HVAvZHBSneRHxoCz6nzRTXoEOK13uvrh5BT1QSGnEjjjUqeUU0j35Ld9mckZ9rY/",
"subtitle_body": "[00:12.54] Yeah, yeah\n[00:15.38] When I walk on by, girls be lookin' like, \"Damn, he fly\"\n[00:18.75] I pimp to the beat, walkin' down the street in my new LaFreak\n[00:22.10] Yeah, this is how I roll, animal print, pants outta control\n[00:25.99] It's Redfoo with the big afro, and like Bruce Leroy, I got the glow, yeah\n[00:29.64] (Ah) girl, look at that body, (ah) girl, look at that body\n[00:33.17] (Ah) girl, look at that body, (ah) I-I-I work out\n[00:36.81] (Ah) girl, look at that body, (ah) girl, look at that body\n[00:40.47] (Ah) girl, look at that body, (ah) I-I-I work out\n[00:43.79] When I walk in the spot (yeah) this is what I see (okay)\n[00:47.71] E'rybody stops and is starin' at me\n[00:50.88] I got passion in my pants and I ain't afraid to show it\n[00:54.90] Show it, show it, show it\n[00:57.66] I'm sexy and I know it\n[01:05.15] I'm sexy and I know it\n[01:13.56] Yeah, when I'm at the mall, security just can't fight 'em all\n[01:17.98] And when I'm at the beach, I'm in a speedo tryna tan my cheeks (what?)\n[01:21.87] This is how I roll, come on, ladies, it's time to go\n[01:25.15] We headed to the bar, baby, don't be nervous\n[01:26.57] No shoes, no shirt, and I still get service, watch\n[01:29.08] (Ah) girl, look at that body, (ah) girl, look at that body\n[01:32.29] (Ah) girl, look at that body, (ah) I-I-I work out\n[01:35.94] (Ah) girl, look at that body, (ah) girl, look at that body\n[01:39.53] (Ah) girl, look at that body, I-I-I work out\n[01:42.89] When I walk in the spot (yeah) this is what I see (okay)\n[01:46.77] E'rybody stops and is starin' at me\n[01:50.02] I got passion in my pants and I ain't afraid to show it\n[01:54.18] Show it, show it, show it\n[01:56.82] I'm sexy and I know it (ay)\n[02:04.27] I'm sexy and I know it\n[02:08.00] Check it out, check it out\n[02:12.88] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:14.73] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:16.56] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:18.47] Wiggle, wiggle, wiggle, wig-, yeah-yeah\n[02:20.82] Do the wiggle, man, I do the wiggle, man\n[02:24.89] Yeah, I'm sexy and I know it, ay, yeah\n[02:43.13] (Ah) girl, look at that body, (ah) girl, look at that body\n[02:46.23] (Ah) girl, look at that body, (ah) I-I-I work out\n[02:49.87] (Ah) girl, look at that body, (ah) girl, look at that body\n[02:53.53] (Ah) girl, look at that body, (ah) I-I-I work out\n[03:10.84] I'm sexy and I know it\n[03:12.24] ",
"subtitle_id": 41629674,
"subtitle_language": "en",
"subtitle_language_description": "English",
"subtitle_length": 199,
"updated_time": "2024-10-31T09:50:18Z"
}
},
"header": {
"execute_time": 0.016800880432129,
"status_code": 200
}
}
}Lyrics & Catalog
matcher.subtitle.get
Get the syncs for a song given its title, artist and duration.
GET
/
ws
/
1.1
/
matcher.subtitle.get
matcher.subtitle.get
curl --request GET \
--url 'https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey='import requests
url = "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.musixmatch.com/ws/1.1/matcher.subtitle.get?apikey=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"message": {
"body": {
"subtitle": {
"lyrics_copyright": "Writer(s): George Matthew Robertson, Stefan Kendal Gordy, Erin Beck, David Jamahl Listenbee, Kenny Oliver, Skyler Husten Gordy\nCopyright: Universal Music Corp., Chebra Music, Universal Tunes, The Vegan Ranch, Eskaywhy Publishing, Hi Mom I Did It\nLyrics powered by www.musixmatch.com",
"pixel_tracking_url": "https://tracking.musixmatch.com/t1.0/m_img/e_0/sn_0/l_0/su_41629674/rs_0/...BBM00_i5JEjI4qO7ZF6qPlettxThcR9F0UVssyptUfdbEFyZWeLzTTuPmqRqPqvoM1OLeULbPE_pyohfNs/",
"region_restriction": {
"allowed": [
"XW"
],
"blocked": []
},
"script_tracking_url": "https://tracking.musixmatch.com/t1.0/m_js/e_0/sn_0/l_0/su_41629674/rs_0/...RKWSnHN8tvXOcbxTbK0HVAvZHBSneRHxoCz6nzRTXoEOK13uvrh5BT1QSGnEjjjUqeUU0j35Ld9mckZ9rY/",
"subtitle_body": "[00:12.54] Yeah, yeah\n[00:15.38] When I walk on by, girls be lookin' like, \"Damn, he fly\"\n[00:18.75] I pimp to the beat, walkin' down the street in my new LaFreak\n[00:22.10] Yeah, this is how I roll, animal print, pants outta control\n[00:25.99] It's Redfoo with the big afro, and like Bruce Leroy, I got the glow, yeah\n[00:29.64] (Ah) girl, look at that body, (ah) girl, look at that body\n[00:33.17] (Ah) girl, look at that body, (ah) I-I-I work out\n[00:36.81] (Ah) girl, look at that body, (ah) girl, look at that body\n[00:40.47] (Ah) girl, look at that body, (ah) I-I-I work out\n[00:43.79] When I walk in the spot (yeah) this is what I see (okay)\n[00:47.71] E'rybody stops and is starin' at me\n[00:50.88] I got passion in my pants and I ain't afraid to show it\n[00:54.90] Show it, show it, show it\n[00:57.66] I'm sexy and I know it\n[01:05.15] I'm sexy and I know it\n[01:13.56] Yeah, when I'm at the mall, security just can't fight 'em all\n[01:17.98] And when I'm at the beach, I'm in a speedo tryna tan my cheeks (what?)\n[01:21.87] This is how I roll, come on, ladies, it's time to go\n[01:25.15] We headed to the bar, baby, don't be nervous\n[01:26.57] No shoes, no shirt, and I still get service, watch\n[01:29.08] (Ah) girl, look at that body, (ah) girl, look at that body\n[01:32.29] (Ah) girl, look at that body, (ah) I-I-I work out\n[01:35.94] (Ah) girl, look at that body, (ah) girl, look at that body\n[01:39.53] (Ah) girl, look at that body, I-I-I work out\n[01:42.89] When I walk in the spot (yeah) this is what I see (okay)\n[01:46.77] E'rybody stops and is starin' at me\n[01:50.02] I got passion in my pants and I ain't afraid to show it\n[01:54.18] Show it, show it, show it\n[01:56.82] I'm sexy and I know it (ay)\n[02:04.27] I'm sexy and I know it\n[02:08.00] Check it out, check it out\n[02:12.88] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:14.73] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:16.56] Wiggle, wiggle, wiggle, wiggle, wiggle, yeah\n[02:18.47] Wiggle, wiggle, wiggle, wig-, yeah-yeah\n[02:20.82] Do the wiggle, man, I do the wiggle, man\n[02:24.89] Yeah, I'm sexy and I know it, ay, yeah\n[02:43.13] (Ah) girl, look at that body, (ah) girl, look at that body\n[02:46.23] (Ah) girl, look at that body, (ah) I-I-I work out\n[02:49.87] (Ah) girl, look at that body, (ah) girl, look at that body\n[02:53.53] (Ah) girl, look at that body, (ah) I-I-I work out\n[03:10.84] I'm sexy and I know it\n[03:12.24] ",
"subtitle_id": 41629674,
"subtitle_language": "en",
"subtitle_language_description": "English",
"subtitle_length": 199,
"updated_time": "2024-10-31T09:50:18Z"
}
},
"header": {
"execute_time": 0.016800880432129,
"status_code": 200
}
}
}
You can use the ‘f_subtitle_length_max_deviation’ to fetch syncs within the given duration range.
Make sure to:
- fulfill the country restrictions you receive for every copyrighted content;
- apply the tracking method of your choice.
Authorizations
Query Parameters
The song title. Required if the track_isrc is not indicated.
Example:
"Sexy and I know it"
The song artist. Required if the track_isrc is not indicated.
Example:
"LMFAO"
Filter by subtitle length in seconds. For it to function, must be used together with the 'f_subtitle_length_max_deviation' parameter.
Example:
"200"
Max deviation for a subtitle length in seconds.
Example:
"3"
(Optional parameter) If you have an available ISRC ID in your catalogue you can query using this ID only.
Example:
"USUM71108090"
Response
200 - application/json
200 OK / 401 Unauthorized
Show child attributes
Show child attributes
Was this page helpful?
⌘I