/v1/track
Track by id
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/deezer-api/v1/track" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/track", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/track");
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/deezer-api/v1/track",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"track": {
"id": 66609426,
"link": "https://www.deezer.com/track/66609426",
"rank": 954234,
"album": {
"id": 6516139,
"cover": "https://cdn-images.dzcdn.net/images/cover/bc49adb87758e0c8c4e508a9c5cce85d/1000x1000-000000-80-0-0.jpg",
"title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)"
},
"title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)",
"artist": {
"id": 27,
"link": "https://www.deezer.com/artist/27",
"name": "Daft Punk",
"picture": "https://cdn-images.dzcdn.net/images/artist/638e69b9caaf9f9f3f8826febea7b543/1000x1000-000000-80-0-0.jpg"
},
"preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3?hdnea=exp=1780851829~acl=/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3*~data=user_id=0,application_id=42~hmac=c93183ece1d30734e267d6378ad4c172ba18afc85981493ca8b06feca2fe9919",
"explicit": false,
"duration_s": 248,
"title_short": "Get Lucky",
"release_date": "2013-04-19",
"track_position": 1
}
},
"meta": {
"timestamp": "2026-06-07T16:48:49.600Z",
"request_id": "d7d3a852-dc55-46f0-aabd-0f57797bf7f9"
},
"status": "ok",
"message": "Track retrieved successfully",
"success": true
}