curl --request POST \
--url 'https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=' \
--header 'Content-Type: application/json' \
--data '
{
"recording_list": [
{
"isrc": "USRC17607839"
}
]
}
'import requests
url = "https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey="
payload = { "recording_list": [{ "isrc": "USRC17607839" }] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({recording_list: [{isrc: 'USRC17607839'}]})
};
fetch('https://api.musixmatch.com/ws/1.1/recording.credits.search.post?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/recording.credits.search.post?apikey=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'recording_list' => [
[
'isrc' => 'USRC17607839'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey="
payload := strings.NewReader("{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=")
.header("Content-Type", "application/json")
.body("{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"message": {
"header": {
"status_code": 200,
"execute_time": 0.198
},
"body": [
{
"title": "Rolling in the Deep",
"isrc": "USRC17607839",
"artist_list": [
"Adele"
],
"credit_list": [
{
"name": "Adele Adkins",
"role": "Composer Lyricist"
},
{
"name": "Paul Epworth",
"role": "Composer Lyricist"
},
{
"name": "Paul Epworth",
"role": "Producer"
},
{
"name": "Tom Elmhirst",
"role": "Mixing Engineer"
}
]
}
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}Get a recording's credits
Up to 25 recordings by ISRC in, the collaborators on each one out: producers, engineers, players, composers, labels.
Who made the recording, not who owns it. These credits come from a different pipeline than administrator_list, and the two will disagree about the same recording: they answer two different questions and both are right, so they are not reconciled.
A collaborator holding two roles is two rows. An empty credit_list means we hold no credits for that recording.
curl --request POST \
--url 'https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=' \
--header 'Content-Type: application/json' \
--data '
{
"recording_list": [
{
"isrc": "USRC17607839"
}
]
}
'import requests
url = "https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey="
payload = { "recording_list": [{ "isrc": "USRC17607839" }] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({recording_list: [{isrc: 'USRC17607839'}]})
};
fetch('https://api.musixmatch.com/ws/1.1/recording.credits.search.post?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/recording.credits.search.post?apikey=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'recording_list' => [
[
'isrc' => 'USRC17607839'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey="
payload := strings.NewReader("{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=")
.header("Content-Type", "application/json")
.body("{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.musixmatch.com/ws/1.1/recording.credits.search.post?apikey=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"recording_list\": [\n {\n \"isrc\": \"USRC17607839\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"message": {
"header": {
"status_code": 200,
"execute_time": 0.198
},
"body": [
{
"title": "Rolling in the Deep",
"isrc": "USRC17607839",
"artist_list": [
"Adele"
],
"credit_list": [
{
"name": "Adele Adkins",
"role": "Composer Lyricist"
},
{
"name": "Paul Epworth",
"role": "Composer Lyricist"
},
{
"name": "Paul Epworth",
"role": "Producer"
},
{
"name": "Tom Elmhirst",
"role": "Mixing Engineer"
}
]
}
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}{
"message": {
"header": {
"status_code": 123,
"execute_time": 123,
"hint": "<string>",
"hint_code": "invalid_request"
},
"body": [
"<unknown>"
]
}
}Authorizations
Body
The recordings to look up, 1 to 25. An ISRC is accepted hyphenated and in lower case. A row carries isrc and nothing else: any other property is a 400 on the whole request.
1 - 25 elementsShow child attributes
Show child attributes
Response
One entry per submitted recording, in request order.
Show child attributes
Show child attributes
Was this page helpful?