The Power of Love Mix
Explicabo vulticulus cetera thymbra adicio curso dedico modi vulnus stabilis.
Overview
playlists / #180
Explicabo vulticulus cetera thymbra adicio curso dedico modi vulnus stabilis.
The Power of Love Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/180" ); const playlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/playlists.d.ts https://example-data.com/types/playlists.d.ts
import type { Playlist } from "./types/playlists";
const res = await fetch(
"https://example-data.com/api/v1/playlists/180"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/180"
)
playlist = res.json() Response
{
"id": 180,
"userId": 9,
"name": "The Power of Love Mix",
"slug": "the-power-of-love-mix-180",
"description": "Explicabo vulticulus cetera thymbra adicio curso dedico modi vulnus stabilis.",
"songIds": [
1078,
2142,
2785,
542,
2753,
1843,
1464,
2894,
2715,
768,
25,
2033,
154,
295,
290,
1986,
1287,
444,
49,
1791,
1315,
2840,
763,
414,
2926,
197,
2711,
398,
580,
2419,
737,
194,
2334
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-180/500/500",
"createdAt": "2026-01-14T23:52:00.931Z",
"updatedAt": "2026-02-05T04:51:06.628Z"
}