example-data.com

playlists / #3

Cracklin' Rosie Mix

Cracklin' Rosie Mix

Turba turpis ascisco aestas vulnus voluptates corrigo depono vestigium toties.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/3"
)
playlist = res.json()
{
  "id": 3,
  "userId": 247,
  "name": "Cracklin' Rosie Mix",
  "slug": "cracklin-rosie-mix-3",
  "description": "Turba turpis ascisco aestas vulnus voluptates corrigo depono vestigium toties.",
  "songIds": [
    1121,
    1997,
    1590,
    344,
    1873,
    836,
    468,
    2881,
    1173,
    2583,
    2060,
    553,
    2912,
    2524,
    2566,
    145,
    360,
    768,
    1719,
    2568,
    228,
    372
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-3/500/500",
  "createdAt": "2025-08-14T16:40:28.143Z",
  "updatedAt": "2025-09-01T05:46:20.427Z"
}
Draftbit