example-data.com

playlists / #12

Fly Robin Fly Mix

Fly Robin Fly Mix

Synagoga coniuratio pectus socius truculenter sit a universe tolero terminatio aureus alveus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/12"
)
playlist = res.json()
{
  "id": 12,
  "userId": 7,
  "name": "Fly Robin Fly Mix",
  "slug": "fly-robin-fly-mix-12",
  "description": "Synagoga coniuratio pectus socius truculenter sit a universe tolero terminatio aureus alveus.",
  "songIds": [
    146,
    2075,
    696,
    138,
    1840,
    2221,
    695,
    2460,
    1147,
    174,
    116,
    2135,
    1042,
    1736,
    771,
    1903,
    820,
    2790,
    69,
    878,
    2503
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-12/500/500",
  "createdAt": "2025-07-16T22:48:15.216Z",
  "updatedAt": "2025-07-23T08:43:32.909Z"
}
Draftbit