example-data.com

playlists / #89

Grenade Mix

Grenade Mix

Sed textus sollicito tum tenuis trans arbor reiciendis aggero cultellus omnis totidem stips cena.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/89"
)
playlist = res.json()
{
  "id": 89,
  "userId": 238,
  "name": "Grenade Mix",
  "slug": "grenade-mix-89",
  "description": "Sed textus sollicito tum tenuis trans arbor reiciendis aggero cultellus omnis totidem stips cena.",
  "songIds": [
    176,
    789,
    2282,
    2773,
    486,
    1017,
    1607,
    1799,
    92,
    1332,
    2321,
    2236,
    1874,
    168,
    1200,
    1781,
    2933,
    1125,
    1221,
    446,
    305,
    1817,
    1212,
    2438,
    1654,
    1589,
    2518,
    244,
    274,
    585,
    2690,
    977,
    868,
    2495,
    1254,
    2759,
    598
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-89/500/500",
  "createdAt": "2024-06-21T09:38:18.787Z",
  "updatedAt": "2024-07-13T13:50:26.003Z"
}
Draftbit