Buttons & Bows Mix
Vigilo tepidus catena quis sophismata derelinquo templum crux socius caute totidem.
Overview
playlists / #78
Vigilo tepidus catena quis sophismata derelinquo templum crux socius caute totidem.
Buttons & Bows Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/78" ); 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/78"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/78"
)
playlist = res.json() Response
{
"id": 78,
"userId": 169,
"name": "Buttons & Bows Mix",
"slug": "buttons-bows-mix-78",
"description": "Vigilo tepidus catena quis sophismata derelinquo templum crux socius caute totidem.",
"songIds": [
1686,
2744,
1440,
2793,
1764,
1358,
1538,
1528,
2700,
1298,
1096,
1694,
1967,
1749,
1327,
1464,
364,
2025,
1034,
2878,
192,
1468,
2197,
1514,
2221,
918,
1328,
1338,
2234
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-78/500/500",
"createdAt": "2025-07-27T08:25:51.549Z",
"updatedAt": "2025-08-01T20:43:41.407Z"
}