Centerfold Mix
Urbs constans caste et creta.
Overview
playlists / #149
Urbs constans caste et creta.
Centerfold Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/149" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/149" ); 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/149"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/149"
)
playlist = res.json() Response
{
"id": 149,
"userId": 226,
"name": "Centerfold Mix",
"slug": "centerfold-mix-149",
"description": "Urbs constans caste et creta.",
"songIds": [
1629,
636,
2388,
1726,
1263,
64,
2808,
452,
1097,
1661,
625,
1042,
1919,
2888,
383,
2462,
1360,
2552,
760,
2919,
1422,
2629,
508
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-149/500/500",
"createdAt": "2025-10-26T17:04:30.258Z",
"updatedAt": "2025-11-01T19:23:01.718Z"
}