Pennies From Heaven Mix
Tandem solvo ad arceo defaeco solutio.
playlists / #6
Tandem solvo ad arceo defaeco solutio.
Pennies From Heaven Mix
curl -sS \
"https://example-data.com/api/v1/playlists/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/6"
);
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/6"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/6"
)
playlist = res.json() {
"id": 6,
"userId": 186,
"name": "Pennies From Heaven Mix",
"slug": "pennies-from-heaven-mix-6",
"description": "Tandem solvo ad arceo defaeco solutio.",
"songIds": [
1554,
1424,
2315,
1727,
399,
1364,
1490,
2317,
1020,
1080,
2627,
548,
2806,
1077,
2001,
2868,
2933,
2482,
711,
408,
1679,
2598,
1760,
2331,
757,
2740,
1686,
887,
1632,
2579,
1553,
904,
1319,
2069,
376,
2502,
2485,
775,
906,
2212,
2767,
1255,
2841,
1529,
2357,
2172,
2637,
271
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-6/500/500",
"createdAt": "2024-12-24T07:29:16.563Z",
"updatedAt": "2024-12-30T21:40:43.466Z"
}