example-data.com

playlists / #21

One of These Nights Mix

One of These Nights Mix

Nobis tonsor atrox cuppedia crepusculum tenax ventosus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/21"
)
playlist = res.json()
{
  "id": 21,
  "userId": 109,
  "name": "One of These Nights Mix",
  "slug": "one-of-these-nights-mix-21",
  "description": "Nobis tonsor atrox cuppedia crepusculum tenax ventosus.",
  "songIds": [
    2115,
    2376,
    2379,
    389,
    1293,
    444,
    2279,
    921,
    383,
    2114,
    111,
    2480,
    1111,
    2254,
    768,
    1979,
    2050,
    2292,
    758,
    789,
    1460,
    810,
    2512,
    691,
    710,
    1454,
    743,
    228,
    2368,
    1516,
    122,
    2926,
    1232,
    1797,
    1475,
    2119,
    48,
    2052,
    1068,
    1529,
    255,
    104,
    2126,
    944,
    1091,
    647,
    979
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-21/500/500",
  "createdAt": "2025-11-17T08:40:37.430Z",
  "updatedAt": "2025-11-19T10:15:45.438Z"
}
Draftbit