Straight Up Mix
Corrupti curto minus suppono cibo tener patior acervus vae textus bellicus turba.
playlists / #8
Corrupti curto minus suppono cibo tener patior acervus vae textus bellicus turba.
Straight Up Mix
curl -sS \
"https://example-data.com/api/v1/playlists/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/8"
);
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/8"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/8"
)
playlist = res.json() {
"id": 8,
"userId": 210,
"name": "Straight Up Mix",
"slug": "straight-up-mix-8",
"description": "Corrupti curto minus suppono cibo tener patior acervus vae textus bellicus turba.",
"songIds": [
2092,
1378,
1888,
2850,
2685,
379,
906,
1878,
1428,
1435,
1382,
2119,
969,
1889,
2133,
555,
2751,
2731,
71
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-8/500/500",
"createdAt": "2026-01-07T12:08:54.146Z",
"updatedAt": "2026-01-29T19:35:00.287Z"
}