Love In This Club Mix
Sono terreo reprehenderit tutamen terror amplexus confido decumbo.
playlists / #108
Sono terreo reprehenderit tutamen terror amplexus confido decumbo.
Love In This Club Mix
curl -sS \
"https://example-data.com/api/v1/playlists/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/108"
);
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/108"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/108"
)
playlist = res.json() {
"id": 108,
"userId": 178,
"name": "Love In This Club Mix",
"slug": "love-in-this-club-mix-108",
"description": "Sono terreo reprehenderit tutamen terror amplexus confido decumbo.",
"songIds": [
2299,
95,
120,
442,
1414,
1705,
1112,
2754,
1609,
590,
209,
498,
2341,
902,
1630,
639,
1019,
1476,
161,
2570,
593,
1144,
1376,
886,
1534,
2031,
2386
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-108/500/500",
"createdAt": "2025-08-03T09:05:49.522Z",
"updatedAt": "2025-08-15T10:31:45.151Z"
}