Green River Mix
Ancilla centum apostolus attonbitus carcer ante confero veritas.
playlists / #151
Ancilla centum apostolus attonbitus carcer ante confero veritas.
Green River Mix
curl -sS \
"https://example-data.com/api/v1/playlists/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/151"
);
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/151"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/151"
)
playlist = res.json() {
"id": 151,
"userId": 158,
"name": "Green River Mix",
"slug": "green-river-mix-151",
"description": "Ancilla centum apostolus attonbitus carcer ante confero veritas.",
"songIds": [
2690,
2627,
617,
866,
1917,
28,
2219,
839,
2930,
304,
851,
919,
2391,
2339,
1907,
453,
566,
1514,
1719,
1468,
991,
631,
2572,
461,
2395,
777
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-151/500/500",
"createdAt": "2024-12-09T03:46:26.036Z",
"updatedAt": "2025-01-03T22:53:30.277Z"
}