example-data.com

playlists / #123

Love Hangover Mix

Love Hangover Mix

Voluptatibus casus impedit custodia agnitio attero succedo ventosus voluptates depereo verbera tondeo celo veritatis ciminatio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/123"
)
playlist = res.json()
{
  "id": 123,
  "userId": 223,
  "name": "Love Hangover Mix",
  "slug": "love-hangover-mix-123",
  "description": "Voluptatibus casus impedit custodia agnitio attero succedo ventosus voluptates depereo verbera tondeo celo veritatis ciminatio.",
  "songIds": [
    628,
    553,
    1543,
    1948,
    538,
    2977,
    2295,
    1781,
    2722,
    1416,
    1760,
    1643,
    1236,
    2397,
    1580,
    1843,
    2951,
    2359,
    2300,
    1723,
    873,
    1846,
    2134,
    2834,
    638,
    1014,
    617,
    1061,
    2362,
    1292,
    2006,
    656,
    2040,
    1851,
    2165,
    78,
    2696,
    2139,
    339,
    129,
    901,
    134,
    1743,
    240
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-123/500/500",
  "createdAt": "2025-08-24T20:12:01.890Z",
  "updatedAt": "2025-09-22T10:03:14.373Z"
}
Draftbit