/v1/tracks/trending
Trending tracks
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/audius-api/v1/tracks/trending" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audius-api/v1/tracks/trending", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audius-api/v1/tracks/trending");
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/audius-api/v1/tracks/trending",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 100,
"genre": "all",
"tracks": [
{
"id": "BqpPKMP",
"bpm": 140,
"url": "https://audius.co/ciaragraves/pump-2",
"isrc": null,
"mood": "Fiery",
"tags": "trap,140,electronic",
"user": {
"id": "aWvp71",
"name": "Ciara Graves",
"handle": "ciaragraves",
"is_verified": true
},
"genre": "Dubstep",
"title": "Pump",
"artwork": "https://creatornode2.audius.co/content/baeaaaiqsedsizcslowgerwnc7mrwvbzkiog6mckhc77vlk5iplt2tqhddwtoy/1000x1000.jpg",
"license": null,
"duration": 178,
"play_count": 211,
"stream_url": "https://api.audius.co/v1/tracks/BqpPKMP/stream?app_name=oanor",
"musical_key": "E flat minor",
"preview_url": null,
"downloadable": false,
"release_date": "2026-06-05T04:00:00Z",
"repost_count": 37,
"comment_count": 7,
"is_streamable": true,
"favorite_count": 47
},
{
"id": "YVo9amr",
"bpm": 145,
"url": "https://audius.co/Hikmetkarakaplan/cash-contact-me",
"isrc": null,
"mood": "Aggressive",
"tags": "Hiphop,Rap,Audius",
"user": {
"id": "wGxrj",
"name": "KARAKAPLAN",
"handle": "Hikmetkarakaplan",
"is_verified": false
},
"genre": "Hip-Hop/Rap",
"title": "Cash Contact Me ",
"artwork": "https://val011.open-audio-validator.com/content/baeaaaiqseauh73oukvcc7mvuuah242uibtsp4kk4nwfniwsi5qmvdqxs5g3qq/1000x1000.jpg",
"license": null,
"duration": 100,
"play_count": 444,
"stream_url": "https://api.audius.co/v1/tracks/YVo9amr/stream?app_name=oanor",
"musical_key": "A minor",
"preview_url": null,
"downloadable": false,
"release_date": "2026-05-31T12:32:29Z",
"repost_count": 44,
"comment_count": 10,
"is_streamable": true,
"favorite_count": 57
},
{
"id": "XBQQkmO",
"bpm": 128,
"url": "https://audius.co/cryptoravers/ordonez-pa-los-muertos-short-mix-master",
"isrc": null,
"mood": "Energizing",
"tags": "house,music,ordonez,ecuador,latin,crypto,ravers,rolling,tech",
"user": {
"id": "BBZaRP",
"name": "Crypto Ravers",
…