example-data.com
Menu
Browse docs and collections

Overview

playlists / #27

This Land is Your Land Mix

This Land is Your Land Mix

Utilis adflicto deleniti ciminatio tunc vis degenero soleo debeo conatus textus vacuus ventus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 27,
  "userId": 221,
  "name": "This Land is Your Land Mix",
  "slug": "this-land-is-your-land-mix-27",
  "description": "Utilis adflicto deleniti ciminatio tunc vis degenero soleo debeo conatus textus vacuus ventus.",
  "songIds": [
    447,
    1121,
    542,
    1555,
    2588,
    2132,
    1069,
    1059,
    781,
    1964,
    892,
    2125,
    2960,
    2010,
    36,
    1682,
    1016,
    2606,
    2395,
    1443,
    411,
    1200,
    2052,
    555,
    2209,
    2501,
    1194,
    2440,
    2316,
    1659,
    1554,
    1240,
    2016,
    1315,
    609,
    2296,
    1367,
    2839,
    2239,
    1528,
    817,
    639,
    2964,
    2385,
    2530,
    1024,
    2094,
    2246
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-27/500/500",
  "createdAt": "2026-01-16T00:10:01.015Z",
  "updatedAt": "2026-02-08T16:24:32.556Z"
}