example-data.com

playlists / #143

Let's Stay Together Mix

Let's Stay Together Mix

Uterque vivo amo usitas patrocinor caterva maxime aurum certe cubitum sed vomito.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/143"
)
playlist = res.json()
{
  "id": 143,
  "userId": 204,
  "name": "Let's Stay Together Mix",
  "slug": "lets-stay-together-mix-143",
  "description": "Uterque vivo amo usitas patrocinor caterva maxime aurum certe cubitum sed vomito.",
  "songIds": [
    2148,
    101,
    1750,
    1399,
    117,
    2291,
    5,
    1932,
    1212,
    2585
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-143/500/500",
  "createdAt": "2025-12-26T16:33:11.376Z",
  "updatedAt": "2026-01-13T18:50:02.768Z"
}
Draftbit