example-data.com

playlists / #140

Cry Mix

Cry Mix

Uxor ara tergo tripudio quod ventito tergeo.

Component variants

Medium

Cry Mix

Small
Cry Mix

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/140"
)
playlist = res.json()
{
  "id": 140,
  "userId": 249,
  "name": "Cry Mix",
  "slug": "cry-mix-140",
  "description": "Uxor ara tergo tripudio quod ventito tergeo.",
  "songIds": [
    1830,
    786,
    1902,
    1114,
    430,
    1315,
    815,
    1121,
    1202,
    1213,
    457,
    1897,
    2628,
    1004,
    2074,
    1468,
    1198,
    2165,
    733,
    535,
    887,
    1048,
    363,
    1919,
    1869,
    1859
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-140/500/500",
  "createdAt": "2026-03-12T21:08:46.585Z",
  "updatedAt": "2026-03-22T19:35:23.830Z"
}
Draftbit