Under the Boardwalk Mix
Deinde contabesco odit tondeo depulso celo suspendo statim harum arca vilitas aperte tabesco.
playlists / #83
Deinde contabesco odit tondeo depulso celo suspendo statim harum arca vilitas aperte tabesco.
Under the Boardwalk Mix
curl -sS \
"https://example-data.com/api/v1/playlists/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/83"
);
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/83"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/83"
)
playlist = res.json() {
"id": 83,
"userId": 38,
"name": "Under the Boardwalk Mix",
"slug": "under-the-boardwalk-mix-83",
"description": "Deinde contabesco odit tondeo depulso celo suspendo statim harum arca vilitas aperte tabesco.",
"songIds": [
1090,
2206,
1087,
2482,
1832,
2437,
533,
2340,
894,
779,
386,
258,
1758,
1567,
1866,
2795,
625,
2421,
227,
2054
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-83/500/500",
"createdAt": "2026-01-17T18:09:49.713Z",
"updatedAt": "2026-01-28T04:35:47.144Z"
}