Under the Boardwalk Mix
Crebro cinis tabula demitto cohibeo coniecto bibo vitium vulgo dicta vitae bestia totus stipes.
playlists / #110
Crebro cinis tabula demitto cohibeo coniecto bibo vitium vulgo dicta vitae bestia totus stipes.
Under the Boardwalk Mix
curl -sS \
"https://example-data.com/api/v1/playlists/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/110"
);
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/110"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/110"
)
playlist = res.json() {
"id": 110,
"userId": 47,
"name": "Under the Boardwalk Mix",
"slug": "under-the-boardwalk-mix-110",
"description": "Crebro cinis tabula demitto cohibeo coniecto bibo vitium vulgo dicta vitae bestia totus stipes.",
"songIds": [
1952,
633,
235,
1636,
1197,
2797,
2724,
1480,
951,
809,
1801,
2458,
2065,
2556,
765,
1826,
420,
822
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-110/500/500",
"createdAt": "2024-12-31T00:17:00.668Z",
"updatedAt": "2025-01-10T11:18:41.804Z"
}