example-data.com

playlists / #38

Louie Louie Mix

Louie Louie Mix

Venia patior speculum demoror verto.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/38"
)
playlist = res.json()
{
  "id": 38,
  "userId": 151,
  "name": "Louie Louie Mix",
  "slug": "louie-louie-mix-38",
  "description": "Venia patior speculum demoror verto.",
  "songIds": [
    1562,
    2763,
    705,
    2739,
    455,
    1821,
    638,
    1183,
    293,
    757,
    2876,
    30,
    2777,
    674,
    2909,
    1632,
    2932,
    835,
    2738,
    385,
    2567,
    1904,
    1786,
    1998,
    1172,
    338,
    4,
    2327,
    2044,
    2973,
    112,
    2878,
    1023,
    1964,
    66,
    1959,
    85,
    1038,
    387,
    1888,
    2599,
    318,
    28,
    250,
    896,
    1685,
    2122,
    1911
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-38/500/500",
  "createdAt": "2024-09-03T23:40:06.089Z",
  "updatedAt": "2024-09-23T04:08:44.672Z"
}
Draftbit