example-data.com
Menu
Browse docs and collections

Overview

playlists / #154

Where Did Our Love Go Mix

Where Did Our Love Go Mix

Deporto adsum cattus caecus vulgivagus annus tergo versus apud vere.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 154,
  "userId": 237,
  "name": "Where Did Our Love Go Mix",
  "slug": "where-did-our-love-go-mix-154",
  "description": "Deporto adsum cattus caecus vulgivagus annus tergo versus apud vere.",
  "songIds": [
    2929,
    1816,
    2272,
    948,
    1421,
    1742,
    2796,
    170,
    1428,
    1062,
    55,
    2482,
    1959,
    2065,
    426,
    800,
    1533,
    2932
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-154/500/500",
  "createdAt": "2025-03-24T02:15:52.353Z",
  "updatedAt": "2025-04-21T12:22:12.086Z"
}