Under the Boardwalk Mix
Crebro cinis tabula demitto cohibeo coniecto bibo vitium vulgo dicta vitae bestia totus stipes.
Overview
playlists / #110
Crebro cinis tabula demitto cohibeo coniecto bibo vitium vulgo dicta vitae bestia totus stipes.
Under the Boardwalk Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/110" ); 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/110"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/110"
)
playlist = res.json() Response
{
"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"
}