example-data.com
Menu
Browse docs and collections

Overview

playlists / #175

You Don't Bring Me Flowers Mix

You Don't Bring Me Flowers Mix

Congregatio totidem sollers convoco campana.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/playlists/175"
);
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/175"
);
const playlist = (await res.json()) as Playlist;

Python example

import requests

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

Response

{
  "id": 175,
  "userId": 117,
  "name": "You Don't Bring Me Flowers Mix",
  "slug": "you-dont-bring-me-flowers-mix-175",
  "description": "Congregatio totidem sollers convoco campana.",
  "songIds": [
    2820,
    1937,
    2206,
    1598,
    1574,
    2963,
    230,
    2901,
    2578,
    1466,
    119,
    1476,
    916,
    1983,
    2411,
    2255,
    2783,
    1278,
    53,
    1477,
    2344,
    1188,
    281,
    32,
    2108,
    1538,
    1167,
    406,
    1654,
    784,
    1028,
    1209,
    135,
    1432,
    1952,
    1237,
    543
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-175/500/500",
  "createdAt": "2025-09-27T10:47:47.302Z",
  "updatedAt": "2025-10-05T10:54:18.880Z"
}