Eight Days a Week Mix
Coepi velociter sum sulum colo depulso depopulo.
playlists / #82
Coepi velociter sum sulum colo depulso depopulo.
Eight Days a Week Mix
curl -sS \
"https://example-data.com/api/v1/playlists/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/82"
);
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/82"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/82"
)
playlist = res.json() {
"id": 82,
"userId": 7,
"name": "Eight Days a Week Mix",
"slug": "eight-days-a-week-mix-82",
"description": "Coepi velociter sum sulum colo depulso depopulo.",
"songIds": [
2603,
1116,
1838,
1748,
2137,
2131,
1905,
2205,
212,
154,
2938,
1597,
82,
1023,
2150,
866,
1472,
131,
1968,
426,
1149,
2451,
953,
38,
1346
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-82/500/500",
"createdAt": "2026-01-03T23:39:57.357Z",
"updatedAt": "2026-01-18T15:09:14.292Z"
}