example-data.com

playlists / #131

That Old Black Magic Mix

That Old Black Magic Mix

Taceo cado velociter crinis utor conculco.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/131"
)
playlist = res.json()
{
  "id": 131,
  "userId": 45,
  "name": "That Old Black Magic Mix",
  "slug": "that-old-black-magic-mix-131",
  "description": "Taceo cado velociter crinis utor conculco.",
  "songIds": [
    1590,
    947,
    2723,
    868,
    1700,
    2433,
    1502,
    2685,
    1570,
    305,
    2280,
    888,
    1628,
    350,
    512,
    774,
    1693,
    2515,
    2247,
    1503,
    1806,
    1172,
    2523,
    275,
    2862,
    1716,
    1690,
    73,
    1577
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-131/500/500",
  "createdAt": "2024-10-02T07:30:08.702Z",
  "updatedAt": "2024-10-19T07:59:36.443Z"
}
Draftbit