/v1/playlist
Playlist/album with tracks
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/audius-api/v1/playlist" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audius-api/v1/playlist", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audius-api/v1/playlist");
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/playlist",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"playlist": {
"id": "Dv9QV",
"url": "https://audius.co/solanaMBS/playlist/monkeys-chill-63514",
"name": "MONKEYS CHILL",
"user": {
"id": "91GBG",
"name": "SMB",
"handle": "solanaMBS",
"is_verified": false
},
"tracks": [
{
"id": "J5NMd",
"bpm": 86.8,
"url": "https://audius.co/lindecis/soulful-110195",
"isrc": null,
"mood": "Peaceful",
"tags": "lindecis,soulful,chillhop,lofi,instrumental,jazz,beat,hiphop,nujabes",
"user": {
"id": "noBB7",
"name": "L'indécis",
"handle": "lindecis",
"is_verified": false
},
"genre": "Hip-Hop/Rap",
"title": "Soulful",
"artwork": "https://cn3.mainnet.audiusindex.org/content/QmbCGGgBHaS1geZ9xnd6GUpyVU6uY7NT1Wg4fG4D5DR3AR/1000x1000.jpg",
"license": "All rights reserved",
"duration": 221,
"play_count": 59455,
"stream_url": "https://api.audius.co/v1/tracks/J5NMd/stream?app_name=oanor",
"musical_key": "E minor",
"preview_url": null,
"downloadable": false,
"release_date": "2020-10-25T11:11:50Z",
"repost_count": 192,
"comment_count": 3,
"is_streamable": true,
"favorite_count": 463
},
{
"id": "JbXXp",
"bpm": 74.8,
"url": "https://audius.co/kumocollective/midnight-alpha-madj-2082-374407",
"isrc": null,
"mood": "Peaceful",
"tags": "electronic,chill,lofi",
"user": {
"id": "Lj0ae",
"name": "KUMO Collective",
"handle": "kumocollective",
"is_verified": false
},
"genre": "Jazz",
"title": "midnight alpha, madj - 2082",
"artwork": "https://val010.open-audio-validator.com/content/QmbPqA8hKismxLV5fKE9FGXrB7ZA5P7xxZP114e6BSzq7u/1000x1000.jpg",
"license": "All rights reserved",
"duration": 218,
"play_count": 129164,
"stream_url": "https://api.audius.co/v1/tracks/JbXXp/stream?app_name=oanor",
"musical_key": "G minor",
"preview_url": null,
"downloadable": false,
"release_date": "2021-04-22T13:48:15Z",
"repo
…