example-data.com
Menu
Browse docs and collections

Overview

playlists / #134

Revolution Mix

Revolution Mix

Articulus adamo vigilo bellicus debeo claro tondeo audax surculus cupressus cariosus asper.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 134,
  "userId": 247,
  "name": "Revolution Mix",
  "slug": "revolution-mix-134",
  "description": "Articulus adamo vigilo bellicus debeo claro tondeo audax surculus cupressus cariosus asper.",
  "songIds": [
    209,
    521,
    2538,
    2024,
    2208,
    2518,
    623,
    2610,
    1355,
    1968,
    2865,
    248,
    2919,
    2023,
    628,
    2916,
    1569,
    2416,
    1695,
    2080,
    819,
    885,
    2683,
    985,
    2229,
    1872,
    1561,
    376,
    144,
    1739,
    1693,
    1450,
    2265,
    585,
    102,
    2226,
    2774,
    595,
    547,
    89,
    318,
    523,
    2927,
    2549,
    1550,
    2173,
    320,
    2771,
    576,
    1982
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-134/500/500",
  "createdAt": "2025-09-09T19:27:11.675Z",
  "updatedAt": "2025-10-02T02:16:52.656Z"
}