The Wanderer Mix
Congregatio voluntarius collum cui quia vae ulciscor sub suffragium adsum tabesco stella cruentus.
playlists / #104
Congregatio voluntarius collum cui quia vae ulciscor sub suffragium adsum tabesco stella cruentus.
The Wanderer Mix
curl -sS \
"https://example-data.com/api/v1/playlists/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/104"
);
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/104"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/104"
)
playlist = res.json() {
"id": 104,
"userId": 5,
"name": "The Wanderer Mix",
"slug": "the-wanderer-mix-104",
"description": "Congregatio voluntarius collum cui quia vae ulciscor sub suffragium adsum tabesco stella cruentus.",
"songIds": [
2852,
2676,
502,
1705,
1813,
825,
1228,
2713,
83,
2599,
2867,
1666,
2411,
1028,
2841,
124,
1496,
2416,
122,
873,
254,
2336,
2457,
1954,
1164,
1982,
1810,
2091,
361,
2844,
2335,
1723,
1620,
1058
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-104/500/500",
"createdAt": "2024-10-17T09:29:00.688Z",
"updatedAt": "2024-10-27T22:23:01.989Z"
}