example-data.com

playlists / #16

People Mix

People Mix

In saepe tergo theologus decens barba una depopulo ver copiose.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/16"
)
playlist = res.json()
{
  "id": 16,
  "userId": 158,
  "name": "People Mix",
  "slug": "people-mix-16",
  "description": "In saepe tergo theologus decens barba una depopulo ver copiose.",
  "songIds": [
    2366,
    547,
    515,
    2839,
    789,
    1630,
    2808,
    288,
    1907,
    771,
    1689,
    1445,
    1061,
    2509,
    1853,
    35,
    2776,
    2093,
    375,
    491,
    678,
    1099,
    950,
    2376,
    159,
    1350,
    1793,
    1300,
    2295,
    204,
    7,
    2641,
    2614,
    1461,
    2183,
    70
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-16/500/500",
  "createdAt": "2026-01-15T12:43:16.787Z",
  "updatedAt": "2026-01-22T01:37:53.943Z"
}
Draftbit