Red Red Wine Mix
Turbo tardus repellat tactus aiunt cura atrox veniam ademptio.
playlists / #4
Turbo tardus repellat tactus aiunt cura atrox veniam ademptio.
Red Red Wine Mix
curl -sS \
"https://example-data.com/api/v1/playlists/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/4"
);
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/4"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/4"
)
playlist = res.json() {
"id": 4,
"userId": 93,
"name": "Red Red Wine Mix",
"slug": "red-red-wine-mix-4",
"description": "Turbo tardus repellat tactus aiunt cura atrox veniam ademptio.",
"songIds": [
601,
1090,
1719,
2540,
1535,
2926,
543,
1720,
2028,
415,
1774,
2950,
693,
1768,
2789,
1475,
1779,
1599,
1484,
2637,
1737,
1333,
1631,
90,
767,
1155,
1242,
834,
2223,
64,
1379,
162,
1051,
1486,
915,
1340,
1101,
936,
257,
2567,
2098,
1476,
2486,
2017,
2066,
863,
1623,
619
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-4/500/500",
"createdAt": "2025-04-09T03:39:49.848Z",
"updatedAt": "2025-05-06T19:21:03.380Z"
}