/v1/recording
Recording with ISRCs by MBID
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/musicbrainz-api/v1/recording" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/musicbrainz-api/v1/recording", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/musicbrainz-api/v1/recording");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/musicbrainz-api/v1/recording",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"recording": {
"id": "8d3c457f-c5b0-41a7-9339-efc5dc9ce597",
"isrcs": [],
"title": "Radiohead - Paranoid Android (video)",
"video": false,
"artist": [
{
"id": "eec63d3c-3b81-4ad4-b1e4-7c147d4d2b61",
"name": "[no artist]"
}
],
"length": 108000,
"disambiguation": "",
"first_release_date": "2006"
}
},
"meta": {
"timestamp": "2026-06-07T16:47:28.662Z",
"request_id": "4e7a9b60-ba81-44ce-afc1-16ef69f2dc08"
},
"status": "ok",
"message": "Recording retrieved successfully",
"success": true
}