example-data.com

playlists / #33

Yakety Yak Mix

Yakety Yak Mix

Suspendo vos arma absconditus conduco textilis angulus decet modi crinis solus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/33"
)
playlist = res.json()
{
  "id": 33,
  "userId": 200,
  "name": "Yakety Yak Mix",
  "slug": "yakety-yak-mix-33",
  "description": "Suspendo vos arma absconditus conduco textilis angulus decet modi crinis solus.",
  "songIds": [
    2636,
    1305,
    2081,
    482,
    1065,
    841,
    2267,
    2569,
    314,
    1831,
    1393,
    689,
    2416,
    1299,
    1219,
    834,
    2130,
    2676,
    735,
    1247,
    833,
    465,
    178,
    2973,
    1701,
    1011,
    1530,
    643,
    475,
    972,
    2275,
    1829,
    1954,
    938,
    1089,
    976,
    2621,
    1671
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-33/500/500",
  "createdAt": "2025-06-05T18:40:01.627Z",
  "updatedAt": "2025-06-27T13:20:51.440Z"
}
Draftbit