Makin' Whoopee Mix
Centum labore ubi tondeo maxime ipsum uterque amet fuga ea dolores occaecati incidunt delibero.
playlists / #11
Centum labore ubi tondeo maxime ipsum uterque amet fuga ea dolores occaecati incidunt delibero.
Makin' Whoopee Mix
curl -sS \
"https://example-data.com/api/v1/playlists/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/11"
);
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/11"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/11"
)
playlist = res.json() {
"id": 11,
"userId": 146,
"name": "Makin' Whoopee Mix",
"slug": "makin-whoopee-mix-11",
"description": "Centum labore ubi tondeo maxime ipsum uterque amet fuga ea dolores occaecati incidunt delibero.",
"songIds": [
1891,
783,
394,
2310,
2642,
2168,
492,
1144,
1225,
2955,
1066,
2973,
2001,
1952,
296,
981,
2540,
415,
2748,
641,
760,
2643,
1825,
1799,
2850,
606,
814,
2495,
945,
2487,
2881,
859,
1338,
1482,
971,
1145,
1313,
1888,
187,
208,
2017,
744,
2728,
1723,
840,
1902,
519,
1712
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-11/500/500",
"createdAt": "2025-11-02T19:11:31.632Z",
"updatedAt": "2025-11-04T11:52:58.725Z"
}