example-data.com
Menu
Browse docs and collections

Overview

playlists / #196

(Your Love Keeps Lifting Me) Higher & Higher Mix

(Your Love Keeps Lifting Me) Higher & Higher Mix

Tollo vulnus debitis ullam carmen vestrum stips vere odit video causa virga cunae.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 196,
  "userId": 167,
  "name": "(Your Love Keeps Lifting Me) Higher & Higher Mix",
  "slug": "your-love-keeps-lifting-me-higher-higher-mix-196",
  "description": "Tollo vulnus debitis ullam carmen vestrum stips vere odit video causa virga cunae.",
  "songIds": [
    2010,
    91,
    2824,
    1227,
    2300,
    953,
    1039,
    1987,
    698,
    454,
    1469,
    2094,
    789,
    1734,
    2939,
    597,
    885,
    2774,
    1594,
    1949,
    92,
    1637,
    89,
    2050,
    2141,
    2442,
    2669,
    1299,
    1092,
    793,
    1692,
    2567,
    1591
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-196/500/500",
  "createdAt": "2026-03-05T02:49:59.412Z",
  "updatedAt": "2026-03-25T08:48:13.627Z"
}