example-data.com
Menu
Browse docs and collections

Overview

playlists / #116

Wake Me Up Before You Go Go Mix

Wake Me Up Before You Go Go Mix

Repellat corrigo totidem capitulus volo appello cavus usque acervus trans votum cupiditas vilis reprehenderit.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 116,
  "userId": 8,
  "name": "Wake Me Up Before You Go Go Mix",
  "slug": "wake-me-up-before-you-go-go-mix-116",
  "description": "Repellat corrigo totidem capitulus volo appello cavus usque acervus trans votum cupiditas vilis reprehenderit.",
  "songIds": [
    1963,
    2115,
    1665,
    433,
    1364,
    2467,
    128,
    2543,
    1628,
    762,
    2879,
    1085,
    162,
    2273,
    37,
    2834,
    58,
    1264,
    587,
    1738,
    651,
    336,
    634,
    182,
    2052,
    877,
    1834,
    11,
    1769,
    1596,
    169,
    2514,
    2025,
    196
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-116/500/500",
  "createdAt": "2026-01-04T13:25:20.774Z",
  "updatedAt": "2026-01-25T21:09:40.854Z"
}