Chapel of Love Mix
Natus clarus clementia desidero corrumpo coadunatio non damnatio.
Overview
playlists / #155
Natus clarus clementia desidero corrumpo coadunatio non damnatio.
Chapel of Love Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/155" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/155" ); 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/155"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/155"
)
playlist = res.json() Response
{
"id": 155,
"userId": 1,
"name": "Chapel of Love Mix",
"slug": "chapel-of-love-mix-155",
"description": "Natus clarus clementia desidero corrumpo coadunatio non damnatio.",
"songIds": [
1721,
1770,
329,
16,
1828,
608,
1722,
1885,
1071,
2002,
1942,
98,
216,
742,
1304,
466,
2,
1952,
721,
143,
901,
623,
2282,
2651,
105,
1029,
2402,
1124,
1208,
1536,
153
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-155/500/500",
"createdAt": "2026-02-25T11:24:39.692Z",
"updatedAt": "2026-03-19T03:48:59.146Z"
}