Some Enchanted Evening Mix
Summa vulticulus celo ultio excepturi volva absorbeo delinquo textilis.
playlists / #198
Summa vulticulus celo ultio excepturi volva absorbeo delinquo textilis.
Some Enchanted Evening Mix
curl -sS \
"https://example-data.com/api/v1/playlists/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/198"
);
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/198"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/198"
)
playlist = res.json() {
"id": 198,
"userId": 245,
"name": "Some Enchanted Evening Mix",
"slug": "some-enchanted-evening-mix-198",
"description": "Summa vulticulus celo ultio excepturi volva absorbeo delinquo textilis.",
"songIds": [
67,
1417,
2605,
289,
1222,
1711,
2438,
1726,
439,
1924,
2775,
386,
430,
614,
470,
1674,
2440,
2265,
2780,
336,
2018,
113,
2896,
417,
205,
2151,
905,
1741,
1911,
1221,
2087,
2652,
1657,
1424
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-198/500/500",
"createdAt": "2024-09-27T11:24:45.525Z",
"updatedAt": "2024-10-12T21:38:32.140Z"
}