example-data.com
Menu
Browse docs and collections

Overview

playlists / #48

More Than Words Mix

More Than Words Mix

Aegre vomer arcus sublime cetera calamitas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 48,
  "userId": 196,
  "name": "More Than Words Mix",
  "slug": "more-than-words-mix-48",
  "description": "Aegre vomer arcus sublime cetera calamitas.",
  "songIds": [
    1750,
    1988,
    1463,
    1457,
    2092,
    1915,
    1507,
    2971,
    2278,
    2261,
    1501,
    2895,
    1031,
    463,
    379,
    644,
    2241,
    598,
    2274,
    2544,
    1330,
    847,
    1649,
    743,
    504,
    2731,
    254,
    2352,
    17,
    2493,
    693,
    2440,
    2294
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-48/500/500",
  "createdAt": "2026-03-19T14:41:42.615Z",
  "updatedAt": "2026-03-27T12:28:18.821Z"
}