The Loco-Motion Mix
Crebro benevolentia decet paulatim cupiditas.
playlists / #144
Crebro benevolentia decet paulatim cupiditas.
The Loco-Motion Mix
curl -sS \
"https://example-data.com/api/v1/playlists/144" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/144"
);
const playlist = await res.json();import type { Playlist } from "https://example-data.com/types/playlists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/playlists/144"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/144"
)
playlist = res.json() {
"id": 144,
"userId": 250,
"name": "The Loco-Motion Mix",
"slug": "the-loco-motion-mix-144",
"description": "Crebro benevolentia decet paulatim cupiditas.",
"songIds": [
1034,
2133,
1815,
2922,
245,
2569,
1921,
2636,
872,
2352,
1789,
997,
2705,
2676,
1891,
1878,
2637,
935,
1131,
948,
2916,
2216,
1562,
560,
2362,
986,
2865,
2276,
1703,
2097,
1393,
2470,
2973,
1809,
1979,
323,
2071,
541,
470,
862
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-144/500/500",
"createdAt": "2025-07-16T06:19:29.963Z",
"updatedAt": "2025-07-25T04:20:55.874Z"
}