Under the Boardwalk Mix
Ascisco crapula officia adfero vere argumentum audentia antepono eius.
playlists / #165
Ascisco crapula officia adfero vere argumentum audentia antepono eius.
Under the Boardwalk Mix
curl -sS \
"https://example-data.com/api/v1/playlists/165" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/165"
);
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/165"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/165"
)
playlist = res.json() {
"id": 165,
"userId": 228,
"name": "Under the Boardwalk Mix",
"slug": "under-the-boardwalk-mix-165",
"description": "Ascisco crapula officia adfero vere argumentum audentia antepono eius.",
"songIds": [
1920,
1441,
611,
196,
95,
1472,
1391,
73,
2635,
498,
94,
2664,
385,
1359,
860,
1680,
2923
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-165/500/500",
"createdAt": "2026-03-06T18:55:59.355Z",
"updatedAt": "2026-03-25T14:24:04.892Z"
}