example-data.com
Menu
Browse docs and collections

Overview

playlists / #34

Ol' Man River Mix

Ol' Man River Mix

Theca accusator barba cura utrimque verbera alias talis auctus supra bellum stillicidium curtus charisma.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 34,
  "userId": 27,
  "name": "Ol' Man River Mix",
  "slug": "ol-man-river-mix-34",
  "description": "Theca accusator barba cura utrimque verbera alias talis auctus supra bellum stillicidium curtus charisma.",
  "songIds": [
    808,
    1150,
    2438,
    428,
    2869,
    460,
    612,
    1949,
    1726,
    2000,
    314,
    2103,
    426,
    1776,
    1846,
    2894,
    1955,
    895,
    2243,
    1598,
    1131,
    703,
    2793,
    1461,
    2547,
    476,
    452,
    1337,
    127,
    2130,
    203,
    2229,
    2944,
    1318,
    102,
    2947,
    2333,
    981,
    1806,
    1723
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-34/500/500",
  "createdAt": "2025-09-08T22:39:07.483Z",
  "updatedAt": "2025-09-13T17:31:51.645Z"
}