example-data.com
Menu
Browse docs and collections

Overview

playlists / #44

Theme From 'Greatest American Hero' (Believe It Or Not) Mix

Theme From 'Greatest American Hero' (Believe It Or Not) Mix

Communis debilito ager creta triduana numquam tego comparo aspernatur bonus vorago consectetur accusantium decerno numquam.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 44,
  "userId": 182,
  "name": "Theme From 'Greatest American Hero' (Believe It Or Not) Mix",
  "slug": "theme-from-greatest-american-hero-believe-it-or-not-mix-44",
  "description": "Communis debilito ager creta triduana numquam tego comparo aspernatur bonus vorago consectetur accusantium decerno numquam.",
  "songIds": [
    2111,
    834,
    1452,
    1976,
    2459,
    1008,
    65,
    348,
    17,
    2791,
    1939,
    194,
    1752,
    1208,
    2799,
    2382,
    1630,
    83,
    2458,
    2909,
    2670,
    2713,
    46,
    563,
    2016,
    2533,
    2497
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-44/500/500",
  "createdAt": "2025-04-27T11:18:16.529Z",
  "updatedAt": "2025-05-09T06:08:57.343Z"
}