example-data.com
Menu
Browse docs and collections

Overview

playlists / #35

Only You (And You Alone) Mix

Only You (And You Alone) Mix

Nihil possimus pecco amitto virga.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 35,
  "userId": 59,
  "name": "Only You (And You Alone) Mix",
  "slug": "only-you-and-you-alone-mix-35",
  "description": "Nihil possimus pecco amitto virga.",
  "songIds": [
    430,
    608,
    531,
    2504,
    2372,
    1140,
    2442,
    2647,
    2371,
    613,
    2351,
    1204,
    676,
    1986,
    2859,
    497,
    52,
    1523,
    1211,
    2557,
    2331,
    2894,
    630,
    2830,
    574,
    2577,
    2806,
    2440,
    1875,
    1860,
    898,
    1371
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-35/500/500",
  "createdAt": "2025-11-12T11:29:21.305Z",
  "updatedAt": "2025-11-24T05:42:44.920Z"
}