You're So Vain Mix
Verbum beatus tersus expedita tracto eligendi pel cursus.
Overview
playlists / #87
Verbum beatus tersus expedita tracto eligendi pel cursus.
You're So Vain Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/87" ); 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/87"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/87"
)
playlist = res.json() Response
{
"id": 87,
"userId": 126,
"name": "You're So Vain Mix",
"slug": "youre-so-vain-mix-87",
"description": "Verbum beatus tersus expedita tracto eligendi pel cursus.",
"songIds": [
815,
1485,
658,
2309,
2249,
2299,
538,
2051,
1340,
2375,
2025,
2564,
1884,
2123,
1141,
2612,
2609,
681,
330,
1110,
2725,
1992,
1879,
1359,
2925,
1043,
1600
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-87/500/500",
"createdAt": "2026-01-09T22:50:17.728Z",
"updatedAt": "2026-01-20T15:25:17.395Z"
}