example-data.com
Menu
Browse docs and collections

Overview

playlists / #7

Bridge Over Troubled Water Mix

Bridge Over Troubled Water Mix

Eos tumultus depono vorago incidunt vivo circumvenio atavus credo ter ducimus tot carmen supellex amo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 7,
  "userId": 85,
  "name": "Bridge Over Troubled Water Mix",
  "slug": "bridge-over-troubled-water-mix-7",
  "description": "Eos tumultus depono vorago incidunt vivo circumvenio atavus credo ter ducimus tot carmen supellex amo.",
  "songIds": [
    2397,
    1280,
    867,
    882,
    355,
    2730,
    1600,
    1906,
    332,
    1737,
    408,
    2210,
    1784,
    47,
    488,
    2444
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-7/500/500",
  "createdAt": "2024-07-22T21:03:15.709Z",
  "updatedAt": "2024-08-05T23:36:51.188Z"
}