Gold Digger Mix
Vulgo attollo damno vulnero theca fugit viridis creo terminatio aestas cunctatio sumo alveus cohaero.
Overview
playlists / #13
Vulgo attollo damno vulnero theca fugit viridis creo terminatio aestas cunctatio sumo alveus cohaero.
Gold Digger Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/13" ); 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/13"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/13"
)
playlist = res.json() Response
{
"id": 13,
"userId": 210,
"name": "Gold Digger Mix",
"slug": "gold-digger-mix-13",
"description": "Vulgo attollo damno vulnero theca fugit viridis creo terminatio aestas cunctatio sumo alveus cohaero.",
"songIds": [
2090,
2386,
484,
2422,
2331,
1142,
1006,
191,
2823,
1619,
1665,
1237,
830,
2352,
1765,
2380,
18,
2207,
1560,
1834,
1122,
2052,
2852,
368,
1941,
1905,
1730,
1110,
2847,
2825,
492,
515,
2096,
1686,
2605,
2060,
1391,
584,
1610,
741,
794,
482,
1300,
2629,
1639,
1114,
1072,
2948
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-13/500/500",
"createdAt": "2025-10-25T22:58:35.804Z",
"updatedAt": "2025-11-22T13:48:58.341Z"
}