example-data.com
Menu
Browse docs and collections

Overview

playlists / #22

Walk On By Mix

Walk On By Mix

Ustilo addo undique tribuo valetudo animus volutabrum apto amet conturbo caterva ducimus vereor vinitor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 22,
  "userId": 2,
  "name": "Walk On By Mix",
  "slug": "walk-on-by-mix-22",
  "description": "Ustilo addo undique tribuo valetudo animus volutabrum apto amet conturbo caterva ducimus vereor vinitor.",
  "songIds": [
    734,
    1311,
    2548,
    1822,
    548,
    1795,
    428,
    2551,
    1268,
    1904,
    902,
    20,
    334,
    1475,
    1914,
    63,
    1522,
    2936,
    1525,
    790,
    154,
    2413,
    2970,
    2737,
    2444,
    882,
    267,
    2482,
    2227,
    1575
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-22/500/500",
  "createdAt": "2024-07-30T20:18:25.525Z",
  "updatedAt": "2024-08-21T22:21:47.284Z"
}