/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/deezer-api/v1/search/playlists" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/search/playlists", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-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/deezer-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": 25,
"query": "workout",
"total": 183,
"playlists": [
{
"id": 1936903262,
"link": "https://www.deezer.com/playlist/1936903262",
"title": "EDM Workout",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/49be8898206717148b6d04cc2a067ca9/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 50,
"creation_date": "2016-06-17 12:36:36"
},
{
"id": 12134756071,
"link": "https://www.deezer.com/playlist/12134756071",
"title": "Hits Remixed",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/b2e636477df7831f05d235e3a2739a2d/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 50,
"creation_date": "2023-12-15 18:02:01"
},
{
"id": 2532117644,
"link": "https://www.deezer.com/playlist/2532117644",
"title": "Pop Workout",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/5f55d4c9033ff8e3b4bf5aa9f40c99d1/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 80,
"creation_date": "2016-12-07 18:03:09"
},
{
"id": 12593959543,
"link": "https://www.deezer.com/playlist/12593959543",
"title": "Power Sport Hits",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/d60832a55255b88f978ab68ec331b6c9/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 87,
"creation_date": "2024-04-10 15:39:57"
},
{
"id": 2055454184,
"link": "https://www.deezer.com/playlist/2055454184",
"title": "House Workout",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/646574d02842d3f4757d3e65f9f5aee0/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 50,
"creation_date": "2016-07-22 16:34:14"
},
{
"id": 6947570504,
"link": "https://www.deezer.com/playlist/6947570504",
"title": "läuft bei dir",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/f716d95a9b9c02a661e8eeaf25b0dea5/1000x1000-000000-80-0-0.jpg",
"nb_tracks": 121,
"creation_date": "2019-12-11 16:12:05"
},
{
"id": 2153050122,
"link": "https://www.deezer.com/playlist/2153050122",
"title": "-",
"public": true,
"picture": "https://cdn-images.dzcdn.net/images/playlist/91fd4a77f20b82543a8d6823082818cf/1000x1000-00000
…