Love Will Keep Us Together Mix
Dapifer uredo tergeo ara aestas ambulo venio usque adfectus libero exercitationem cohibeo amo tabula molestiae.
Overview
playlists / #66
Dapifer uredo tergeo ara aestas ambulo venio usque adfectus libero exercitationem cohibeo amo tabula molestiae.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/66" ); 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/66"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/66"
)
playlist = res.json() Response
{
"id": 66,
"userId": 36,
"name": "Love Will Keep Us Together Mix",
"slug": "love-will-keep-us-together-mix-66",
"description": "Dapifer uredo tergeo ara aestas ambulo venio usque adfectus libero exercitationem cohibeo amo tabula molestiae.",
"songIds": [
2549,
414,
356,
369,
2145,
769,
2326,
1199,
387,
1502,
2126,
1584,
1454,
1524,
777,
1957,
1158,
1834,
1195,
383,
759,
1735,
1469,
1166,
2542,
898,
188,
649,
266,
831,
1409,
2063,
172,
1245,
2464,
1011,
2263,
190,
1004,
623,
827,
2125,
1683,
1304
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-66/500/500",
"createdAt": "2026-03-21T17:55:15.503Z",
"updatedAt": "2026-04-19T12:33:36.172Z"
}