example-data.com

playlists / #150

Physical Mix

Physical Mix

Harum capillus patria fugiat depono aperio.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/150"
)
playlist = res.json()
{
  "id": 150,
  "userId": 70,
  "name": "Physical Mix",
  "slug": "physical-mix-150",
  "description": "Harum capillus patria fugiat depono aperio.",
  "songIds": [
    2410,
    2336,
    797,
    1501,
    423,
    2687,
    652,
    602,
    1545,
    47,
    2413,
    1276,
    703,
    289,
    2289,
    717,
    2473,
    1329,
    738,
    1225,
    2954,
    253,
    1111,
    2199,
    218,
    1628,
    2595,
    101,
    2931
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-150/500/500",
  "createdAt": "2024-12-25T18:40:16.306Z",
  "updatedAt": "2025-01-11T06:16:29.865Z"
}
Draftbit