example-data.com
Menu
Browse docs and collections

Overview

playlists / #108

Love In This Club Mix

Love In This Club Mix

Sono terreo reprehenderit tutamen terror amplexus confido decumbo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 108,
  "userId": 178,
  "name": "Love In This Club Mix",
  "slug": "love-in-this-club-mix-108",
  "description": "Sono terreo reprehenderit tutamen terror amplexus confido decumbo.",
  "songIds": [
    2299,
    95,
    120,
    442,
    1414,
    1705,
    1112,
    2754,
    1609,
    590,
    209,
    498,
    2341,
    902,
    1630,
    639,
    1019,
    1476,
    161,
    2570,
    593,
    1144,
    1376,
    886,
    1534,
    2031,
    2386
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-108/500/500",
  "createdAt": "2025-08-03T09:05:49.522Z",
  "updatedAt": "2025-08-15T10:31:45.151Z"
}