example-data.com
Menu
Browse docs and collections

Overview

playlists / #94

My Life Mix

My Life Mix

Aequitas sol arto depraedor cilicium careo alter thymbra eos traho amaritudo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 94,
  "userId": 137,
  "name": "My Life Mix",
  "slug": "my-life-mix-94",
  "description": "Aequitas sol arto depraedor cilicium careo alter thymbra eos traho amaritudo.",
  "songIds": [
    369,
    137,
    759,
    1533,
    1305,
    157,
    580,
    2027,
    204,
    923,
    432,
    162,
    1087,
    440,
    622,
    334,
    2252,
    227,
    1623,
    2033,
    1284
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-94/500/500",
  "createdAt": "2025-03-09T18:57:11.100Z",
  "updatedAt": "2025-03-29T18:14:16.984Z"
}