example-data.com

playlists / #136

The Joker Mix

The Joker Mix

Facilis vilicus audio auxilium terebro alius minus ascit.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/136"
)
playlist = res.json()
{
  "id": 136,
  "userId": 186,
  "name": "The Joker Mix",
  "slug": "the-joker-mix-136",
  "description": "Facilis vilicus audio auxilium terebro alius minus ascit.",
  "songIds": [
    2141,
    1624,
    2759,
    1777,
    2581,
    734,
    1772,
    1639,
    426,
    2911,
    2547,
    2027,
    965,
    1943,
    1398,
    1172,
    2767,
    2826,
    782,
    660,
    1114,
    858,
    1425,
    200,
    1926,
    2218,
    1496
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-136/500/500",
  "createdAt": "2026-04-10T11:34:13.151Z",
  "updatedAt": "2026-04-11T20:23:32.588Z"
}
Draftbit