Under the Boardwalk Mix
Deinde contabesco odit tondeo depulso celo suspendo statim harum arca vilitas aperte tabesco.
Overview
playlists / #83
Deinde contabesco odit tondeo depulso celo suspendo statim harum arca vilitas aperte tabesco.
Under the Boardwalk Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/83" ); const playlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/playlists.d.ts https://example-data.com/types/playlists.d.ts
import type { Playlist } from "./types/playlists";
const res = await fetch(
"https://example-data.com/api/v1/playlists/83"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/83"
)
playlist = res.json() Response
{
"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"
}