example-data.com

playlists / #25

Hey There Mix

Hey There Mix

Nihil confugo crinis thymum coerceo cras correptius triduana deprecator aliqua traho.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/25"
)
playlist = res.json()
{
  "id": 25,
  "userId": 167,
  "name": "Hey There Mix",
  "slug": "hey-there-mix-25",
  "description": "Nihil confugo crinis thymum coerceo cras correptius triduana deprecator aliqua traho.",
  "songIds": [
    1663,
    1596,
    515,
    944,
    1937,
    910,
    2619,
    2062,
    322,
    1806,
    1601,
    1461,
    2651,
    391,
    1738,
    860,
    746,
    706,
    2520,
    2241,
    197,
    448,
    267,
    1081
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-25/500/500",
  "createdAt": "2026-05-13T07:07:20.157Z",
  "updatedAt": "2026-05-15T16:35:52.667Z"
}
Draftbit