example-data.com
Menu
Browse docs and collections

Overview

playlists / #105

That's the Way (I Like It) Mix

That's the Way (I Like It) Mix

Hic amo cubo tergum caterva agnitio vita tubineus culpo statim demulceo uter consequuntur.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 105,
  "userId": 100,
  "name": "That's the Way (I Like It) Mix",
  "slug": "thats-the-way-i-like-it-mix-105",
  "description": "Hic amo cubo tergum caterva agnitio vita tubineus culpo statim demulceo uter consequuntur.",
  "songIds": [
    1262,
    2502,
    1422,
    2947,
    1809,
    2725,
    2754,
    2951,
    2337,
    982,
    618,
    1408,
    830,
    2535,
    2647,
    435,
    299,
    1316,
    1358,
    1592,
    2565,
    758,
    2897,
    201,
    1995,
    750,
    1369,
    1824,
    2178,
    729
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-105/500/500",
  "createdAt": "2025-10-10T05:15:02.854Z",
  "updatedAt": "2025-10-22T13:59:04.885Z"
}