example-data.com
Menu
Browse docs and collections

Overview

playlists / #82

Eight Days a Week Mix

Eight Days a Week Mix

Coepi velociter sum sulum colo depulso depopulo.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/playlists/82" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/playlists/82"
);
const playlist = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/playlists.d.ts https://example-data.com/types/playlists.d.ts
import type { Playlist } from "./types/playlists";

const res = await fetch(
  "https://example-data.com/api/v1/playlists/82"
);
const playlist = (await res.json()) as Playlist;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists/82"
)
playlist = res.json()

Response

{
  "id": 82,
  "userId": 7,
  "name": "Eight Days a Week Mix",
  "slug": "eight-days-a-week-mix-82",
  "description": "Coepi velociter sum sulum colo depulso depopulo.",
  "songIds": [
    2603,
    1116,
    1838,
    1748,
    2137,
    2131,
    1905,
    2205,
    212,
    154,
    2938,
    1597,
    82,
    1023,
    2150,
    866,
    1472,
    131,
    1968,
    426,
    1149,
    2451,
    953,
    38,
    1346
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-82/500/500",
  "createdAt": "2026-01-03T23:39:57.357Z",
  "updatedAt": "2026-01-18T15:09:14.292Z"
}