example-data.com

playlists / #87

You're So Vain Mix

You're So Vain Mix

Verbum beatus tersus expedita tracto eligendi pel cursus.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/playlists/87" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/playlists/87"
);
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/87"
);
const playlist = (await res.json()) as Playlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists/87"
)
playlist = res.json()
{
  "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"
}
Draftbit