Time of the Season Mix
Surgo thorax taceo cavus delibero admitto appono officiis vapulus sperno.
playlists / #59
Surgo thorax taceo cavus delibero admitto appono officiis vapulus sperno.
Time of the Season Mix
curl -sS \
"https://example-data.com/api/v1/playlists/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/59"
);
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/59"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/59"
)
playlist = res.json() {
"id": 59,
"userId": 4,
"name": "Time of the Season Mix",
"slug": "time-of-the-season-mix-59",
"description": "Surgo thorax taceo cavus delibero admitto appono officiis vapulus sperno.",
"songIds": [
2785,
1514,
2930,
2177,
373,
1133,
2246,
2827,
1050,
1276,
2775,
2206,
1282,
1841,
2709,
260,
1500,
343,
2371,
1063,
57,
2095,
1560,
2594,
531,
2322,
2639,
1119,
2852,
2667,
2789,
937,
1108,
1456,
2798
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-59/500/500",
"createdAt": "2026-02-16T09:30:20.833Z",
"updatedAt": "2026-03-15T07:29:52.318Z"
}