example-data.com

playlists / #101

I Want to Hold Your Hand Mix

I Want to Hold Your Hand Mix

Teres audacia sol neque stipes accusator cuppedia.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/101"
)
playlist = res.json()
{
  "id": 101,
  "userId": 14,
  "name": "I Want to Hold Your Hand Mix",
  "slug": "i-want-to-hold-your-hand-mix-101",
  "description": "Teres audacia sol neque stipes accusator cuppedia.",
  "songIds": [
    2664,
    1430,
    610,
    2596,
    2583,
    1152,
    1290,
    678,
    479,
    2960,
    902,
    687,
    2007,
    83,
    2630,
    2779,
    1787,
    911,
    524,
    1819,
    474,
    527,
    263,
    2516,
    1603,
    617
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-101/500/500",
  "createdAt": "2025-07-26T03:49:00.133Z",
  "updatedAt": "2025-08-18T01:47:31.259Z"
}
Draftbit