example-data.com

playlists / #35

Only You (And You Alone) Mix

Only You (And You Alone) Mix

Nihil possimus pecco amitto virga.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/35"
)
playlist = res.json()
{
  "id": 35,
  "userId": 59,
  "name": "Only You (And You Alone) Mix",
  "slug": "only-you-and-you-alone-mix-35",
  "description": "Nihil possimus pecco amitto virga.",
  "songIds": [
    430,
    608,
    531,
    2504,
    2372,
    1140,
    2442,
    2647,
    2371,
    613,
    2351,
    1204,
    676,
    1986,
    2859,
    497,
    52,
    1523,
    1211,
    2557,
    2331,
    2894,
    630,
    2830,
    574,
    2577,
    2806,
    2440,
    1875,
    1860,
    898,
    1371
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-35/500/500",
  "createdAt": "2025-11-12T11:29:21.305Z",
  "updatedAt": "2025-11-24T05:42:44.920Z"
}
Draftbit