example-data.com

playlists / #191

Wichita Lineman Mix

Wichita Lineman Mix

Patruus caelum terga cetera ut campana adeptio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/191"
)
playlist = res.json()
{
  "id": 191,
  "userId": 223,
  "name": "Wichita Lineman Mix",
  "slug": "wichita-lineman-mix-191",
  "description": "Patruus caelum terga cetera ut campana adeptio.",
  "songIds": [
    1870,
    1535,
    2543,
    876,
    2474,
    292,
    1873,
    2744,
    798,
    2471,
    1430,
    2317,
    2483,
    1090,
    2591,
    652,
    1333,
    2673,
    1585,
    365
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-191/500/500",
  "createdAt": "2025-12-15T23:15:52.537Z",
  "updatedAt": "2025-12-28T11:52:44.091Z"
}
Draftbit