Straight Up Mix
Corrupti curto minus suppono cibo tener patior acervus vae textus bellicus turba.
Overview
playlists / #8
Corrupti curto minus suppono cibo tener patior acervus vae textus bellicus turba.
Straight Up Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/8" ); 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/8"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/8"
)
playlist = res.json() Response
{
"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"
}