example-data.com
Menu
Browse docs and collections

Overview

playlists / #148

You Make Me Feel Brand New Mix

You Make Me Feel Brand New Mix

Comedo tripudio deleniti chirographum venia pauper verbera concedo depulso crustulum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 148,
  "userId": 39,
  "name": "You Make Me Feel Brand New Mix",
  "slug": "you-make-me-feel-brand-new-mix-148",
  "description": "Comedo tripudio deleniti chirographum venia pauper verbera concedo depulso crustulum.",
  "songIds": [
    1681,
    66,
    227,
    2671,
    77,
    2762,
    915,
    798,
    786,
    2593,
    935,
    1152,
    1531,
    2160,
    2717,
    1390,
    1806,
    2008,
    2318,
    806,
    2295,
    1416,
    1863,
    96,
    2587,
    1759,
    1157,
    603,
    1385,
    2932,
    2827,
    1166,
    2812,
    2386,
    1468,
    2108
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-148/500/500",
  "createdAt": "2025-04-25T01:03:39.727Z",
  "updatedAt": "2025-05-06T06:03:19.129Z"
}