example-data.com

playlists / #32

Pick Up the Pieces Mix

Pick Up the Pieces Mix

Cras coerceo verumtamen ubi cur dignissimos testimonium vulnus sollicito ultio bos pecco aequitas.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/32"
)
playlist = res.json()
{
  "id": 32,
  "userId": 133,
  "name": "Pick Up the Pieces Mix",
  "slug": "pick-up-the-pieces-mix-32",
  "description": "Cras coerceo verumtamen ubi cur dignissimos testimonium vulnus sollicito ultio bos pecco aequitas.",
  "songIds": [
    1812,
    707,
    2273,
    1024,
    1131,
    2260,
    2866,
    104,
    1315,
    1472,
    116,
    1702,
    267,
    114,
    2506,
    2939,
    1212,
    1675,
    610,
    1997,
    931,
    1387,
    2891,
    1679,
    645,
    2790,
    2949,
    1241,
    2325,
    2387,
    249,
    900,
    1669,
    663,
    1757,
    2185,
    2271,
    1049,
    1530,
    1373,
    172,
    923,
    2219
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-32/500/500",
  "createdAt": "2024-06-29T22:21:28.172Z",
  "updatedAt": "2024-07-18T17:47:13.795Z"
}
Draftbit