example-data.com

playlists / #152

Seasons in the Sun Mix

Seasons in the Sun Mix

Earum absconditus colo quis carus tepesco sumo spes.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/playlists/152"
)
playlist = res.json()
{
  "id": 152,
  "userId": 120,
  "name": "Seasons in the Sun Mix",
  "slug": "seasons-in-the-sun-mix-152",
  "description": "Earum absconditus colo quis carus tepesco sumo spes.",
  "songIds": [
    350,
    2003,
    328,
    1107,
    106,
    2336,
    912,
    657,
    1511,
    2205,
    859,
    1975,
    1262,
    352,
    2612,
    743,
    1011,
    600,
    1731,
    1734,
    81,
    1089,
    129,
    163,
    2051,
    2368,
    417,
    2056,
    894,
    1340,
    38,
    2910,
    2550,
    620,
    1591,
    2103,
    2765,
    2171,
    2618,
    1127,
    2408,
    2098,
    2353,
    1152,
    2121,
    1358,
    1965,
    1564,
    1936,
    969
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-152/500/500",
  "createdAt": "2024-06-08T05:52:53.564Z",
  "updatedAt": "2024-06-09T05:07:58.211Z"
}
Draftbit