/v1/search/playlists
Search playlists
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/audius-api/v1/search/playlists" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audius-api/v1/search/playlists", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audius-api/v1/search/playlists");
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/search/playlists",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 10,
"query": "chill",
"playlists": [
{
"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": [],
"artwork": "https://creatornode2.audius.co/content/QmY3KHSqRCWj1cKi678Gc5TsGcyventVWTpng5VbZXNcVA/1000x1000.jpg",
"is_album": false,
"description": "🍌",
"track_count": 10,
"release_date": "2021-08-30T23:19:55Z",
"repost_count": 248,
"favorite_count": 549,
"total_play_count": 565314
},
{
"id": "ebd1O",
"url": "https://audius.co/blaketree/playlist/lofi-road-trip-chill-lofi-hiphop-jazz-pop-13491",
"name": "lofi road trip - chill lofi, hiphop & jazz pop",
"user": {
"id": "LMQaZ",
"name": "Blake Tree",
"handle": "blaketree",
"is_verified": false
},
"tracks": [],
"artwork": "https://audius-content-2.figment.io/content/QmdhNNYqk4K1Pnb3gCFpakNaaYcFiz5owecDSwRG5SokNZ/1000x1000.jpg",
"is_album": false,
"description": "lofi hip hop tunes to study to, selected by Blake Tree",
"track_count": 112,
"release_date": "2020-10-25T15:41:20Z",
"repost_count": 400,
"favorite_count": 762,
"total_play_count": 1696604
},
{
"id": "ZZr7g",
"url": "https://audius.co/Chilling/playlist/chilling-beats-to-study-mix-2022-chill-lofi-97712",
"name": "Chilling Beats To Study Mix 2022 Chill Lofi",
"user": {
"id": "pPrxB",
"name": "Chilling",
"handle": "Chilling",
"is_verified": false
},
"tracks": [],
"artwork": "https://cn3.mainnet.audiusindex.org/content/QmejXxx8bEDWmJkyCTuByKvPNkh47pPVDmRFhYAGcbADu7/1000x1000.jpg",
"is_album": false,
"description": null,
"track_count": 6,
"release_date": "2022-02-13T17:28:25Z",
"repost_count": 258,
"favorite_count": 408,
"total_play_count": 35476
},
{
"id": "w7yEp",
"url": "https://audius.co/StudyChill/playlist/study-chill-creative-music-97736",
"name": "Study chill Creative Music",
"user": {
"i
…