You Don't Bring Me Flowers Mix
Congregatio totidem sollers convoco campana.
playlists / #175
Congregatio totidem sollers convoco campana.
curl -sS \
"https://example-data.com/api/v1/playlists/175" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/175"
);
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/175"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/175"
)
playlist = res.json() {
"id": 175,
"userId": 117,
"name": "You Don't Bring Me Flowers Mix",
"slug": "you-dont-bring-me-flowers-mix-175",
"description": "Congregatio totidem sollers convoco campana.",
"songIds": [
2820,
1937,
2206,
1598,
1574,
2963,
230,
2901,
2578,
1466,
119,
1476,
916,
1983,
2411,
2255,
2783,
1278,
53,
1477,
2344,
1188,
281,
32,
2108,
1538,
1167,
406,
1654,
784,
1028,
1209,
135,
1432,
1952,
1237,
543
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-175/500/500",
"createdAt": "2025-09-27T10:47:47.302Z",
"updatedAt": "2025-10-05T10:54:18.880Z"
}