Wake Me Up Before You Go Go Mix
Repellat corrigo totidem capitulus volo appello cavus usque acervus trans votum cupiditas vilis reprehenderit.
playlists / #116
Repellat corrigo totidem capitulus volo appello cavus usque acervus trans votum cupiditas vilis reprehenderit.
curl -sS \
"https://example-data.com/api/v1/playlists/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/116"
);
const playlist = await res.json();import type { Playlist } from "https://example-data.com/types/playlists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/playlists/116"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/116"
)
playlist = res.json() {
"id": 116,
"userId": 8,
"name": "Wake Me Up Before You Go Go Mix",
"slug": "wake-me-up-before-you-go-go-mix-116",
"description": "Repellat corrigo totidem capitulus volo appello cavus usque acervus trans votum cupiditas vilis reprehenderit.",
"songIds": [
1963,
2115,
1665,
433,
1364,
2467,
128,
2543,
1628,
762,
2879,
1085,
162,
2273,
37,
2834,
58,
1264,
587,
1738,
651,
336,
634,
182,
2052,
877,
1834,
11,
1769,
1596,
169,
2514,
2025,
196
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-116/500/500",
"createdAt": "2026-01-04T13:25:20.774Z",
"updatedAt": "2026-01-25T21:09:40.854Z"
}