/v1/recording
Recording with ISRCs by MBID
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}