example-data.com
Menu
Browse docs and collections

Overview

playlists / #162

That's the Way Love Goes Mix

That's the Way Love Goes Mix

Aeger stips patruus aveho temeritas patria vesco damnatio vigor omnis totus suscipit solum turpis velit.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 162,
  "userId": 21,
  "name": "That's the Way Love Goes Mix",
  "slug": "thats-the-way-love-goes-mix-162",
  "description": "Aeger stips patruus aveho temeritas patria vesco damnatio vigor omnis totus suscipit solum turpis velit.",
  "songIds": [
    23,
    2283,
    109,
    890,
    660,
    2626,
    2067,
    1720,
    2794,
    2766,
    263,
    786,
    2640,
    301,
    2712,
    574,
    2230,
    2365,
    1948,
    281,
    2120,
    2834,
    1938,
    372,
    1856,
    1594,
    2894,
    1921,
    1598,
    550,
    758,
    1086,
    1048
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-162/500/500",
  "createdAt": "2025-06-22T05:06:54.232Z",
  "updatedAt": "2025-06-23T12:06:22.574Z"
}