example-data.com

playlists / #54

Moonlight Cocktail Mix

Moonlight Cocktail Mix

Color quisquam supellex amplitudo abundans suus.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/54"
)
playlist = res.json()
{
  "id": 54,
  "userId": 159,
  "name": "Moonlight Cocktail Mix",
  "slug": "moonlight-cocktail-mix-54",
  "description": "Color quisquam supellex amplitudo abundans suus.",
  "songIds": [
    2951,
    1299,
    2195,
    1923,
    2260,
    2608,
    1807,
    1433,
    1653,
    829,
    1904,
    1712,
    585,
    997,
    360,
    532,
    2045,
    163,
    612,
    2925,
    934,
    634,
    1703,
    2385,
    2305,
    842,
    957
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-54/500/500",
  "createdAt": "2024-07-06T18:32:42.870Z",
  "updatedAt": "2024-07-22T11:55:26.552Z"
}
Draftbit