example-data.com

playlists / #178

Stronger Mix

Stronger Mix

Tabula repudiandae creo catena utor iure.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/178"
)
playlist = res.json()
{
  "id": 178,
  "userId": 111,
  "name": "Stronger Mix",
  "slug": "stronger-mix-178",
  "description": "Tabula repudiandae creo catena utor iure.",
  "songIds": [
    2512,
    2793,
    1772,
    740,
    1037,
    198,
    761,
    1315,
    1197,
    1141,
    1723,
    2170,
    1586,
    2210,
    223,
    1943,
    1422,
    1746
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-178/500/500",
  "createdAt": "2025-07-26T03:42:19.388Z",
  "updatedAt": "2025-08-04T21:35:59.961Z"
}
Draftbit