example-data.com

playlists / #5

You're Still the One Mix

You're Still the One Mix

Concedo brevis excepturi vinculum angulus vulpes certe exercitationem terror vulpes alias.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/5"
)
playlist = res.json()
{
  "id": 5,
  "userId": 54,
  "name": "You're Still the One Mix",
  "slug": "youre-still-the-one-mix-5",
  "description": "Concedo brevis excepturi vinculum angulus vulpes certe exercitationem terror vulpes alias.",
  "songIds": [
    688,
    2941,
    162,
    1799,
    2469,
    1939,
    2281,
    1595,
    874,
    2008,
    1426,
    1888,
    2409,
    506,
    51,
    1881,
    2189,
    1603,
    866,
    87,
    1783,
    61,
    2125
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-5/500/500",
  "createdAt": "2025-05-09T14:26:25.296Z",
  "updatedAt": "2025-05-14T16:05:39.518Z"
}
Draftbit