Aller au contenu
GET /v1/search/playlists

Search playlists

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/audius-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…